thanks guys i managed to set up the internal ip configuration myself and saw a massive drop in inbound traffic from 11GB/hr to ~50MB/hr LOL
on web server did
Quote:
ifconfig eth1 192.168.0.1 up
cd /etc/sysconfig/network-scripts/
nano ifcfg-eth1
DEVICE=eth1
ONBOOT=yes
BOOTPROTO=static
IPADDR=192.168.0.1
NETMASK=255.255.255.0
/etc/rc.d/init.d/network restart
|
on db server did
Quote:
ifconfig eth1 192.168.0.2 up
cd /etc/sysconfig/network-scripts/
nano ifcfg-eth1
DEVICE=eth1
ONBOOT=yes
BOOTPROTO=static
IPADDR=192.168.0.2
NETMASK=255.255.255.0
/etc/rc.d/init.d/network restart
|
Problem was web server had WHM and wiped the existing ips added to WHM (except the main server ip), so all i did was edit on web server at
Quote:
nano /etc/sysconfig/network-scripts/ifcfg-eth0-range0
add to bottom of existing contents of ifcfg-eth0-range0 the following
IPADDR_START=xx.xx.xx.1x4
IPADDR_END=xx.xx.xx.1x3
CLONENUM_START=0
GATEWAY=xx.xx.xx.1x7
NETMASK=255.255.255.240
NO_ALIASROUTING=yes
/etc/rc.d/init.d/network restart
|
All working