1

Topic: 1st setup (dhcp options)

==== Required information ====
- iRedMail version: iRedMail-0.8.6.tar.bz2, released on 2013-12-16
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): LDAP
- Linux/BSD distribution name and version: 12.04 LTS (precise)
- Related log if you're reporting an issue: after 1st setup (dhcp is enabled)
====

how can I set up an ip address out of my dhcp range without interrupting receiving emails?

regards,
Thiago

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2 (edited by robert.wolfe 2016-03-13 02:33:27)

Re: 1st setup (dhcp options)

thiago.beier wrote:

==== Required information ====
- iRedMail version: iRedMail-0.8.6.tar.bz2, released on 2013-12-16
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): LDAP
- Linux/BSD distribution name and version: 12.04 LTS (precise)
- Related log if you're reporting an issue: after 1st setup (dhcp is enabled)
====

how can I set up an ip address out of my dhcp range without interrupting receiving emails?

regards,
Thiago

For this you would need to edit your /etc/network/interfaces in the following format:

# for eth0
auto eth0
iface eth0 inet static
address <the ip address you want>
netmask <the appropriate netmas for your gateway>
gateway <the ip address of your network's gateway>

So, to show you what this would look like, here is what my Ubuntu desktop has it's file as:

auto eth0
iface eth0 inet static
address 192.168.0.12
netmask 255.255.255.0
gateway 192.168.0.1

Be sure, though, that if this machine is behind a router/firewall that the necessary ports are opened and forwarded to the IP address of the server in question.