Project

General

Profile

Bug #503

Updated by Pierre-Louis Bonicoli about 7 years ago

New IPv4 has been added in @/etc/network/interfaces.d/wan@ (see @admin@ encrypted repository) but services/DNS doesn't use the new address. Services configurations need to updated replacing the old IPv4 by the new one. 

 IPv4 configuration: 
 <pre> 
 # old IPv4 
 iface eth0 inet static 
     address 193.17.192.211/28 
     gateway 193.17.192.222 

 # new IPv4 
 iface eth0 inet static 
     address 193.200.43.105/29 
     gateway 193.200.43.110 
 </pre> 

 The list of services (@[X]@ _updated and applied_, @[/]@ _updated (see .new files) not applied_, @[ ]@ _TODO_) : 
 * @[/]@ dspam 
 * @[/]@ ircd-ratbox (ansible not used) 
 * @[/]@ ratbox-services (ansible not used) 
 * @[/]@ fail2ban 
 * @[ ]@ bind 
 * @[X]@ postfix 
   * @/etc/postfix/helo_overrides.cf@ updated, modification applied using: @postmap /etc/postfix/helo_overrides.cf@ 
   * @/etc/postfix/main.cf@ updated, modification applied using: @systemctl reload postfix@ 

 <pre> 
 # rgrep -l 193.17.192.211 /etc/ 
 /etc/dspam/dspam.conf 
 /etc/fail2ban/jail.conf 
 /etc/bind/master/mini-dweeb.org.zone 
 /etc/bind/master/duckcorp.org.zone 
 /etc/bind/master/hurdfr.org.zone 
 /etc/bind/master/milkypond.org.zone 
 /etc/bind/tsig.conf.hivane 
 /etc/bind/named.conf 
 /etc/bind/tsig.conf 
 /etc/postfix/helo_overrides.cf 
 /etc/postfix/main.cf 
 /etc/ircd-ratbox/common_exempts.conf 
 /etc/ircd-ratbox/ircd.conf 
 /etc/ratbox-services/ratbox-services.conf 
 </pre>

Back