configuring two network interfaces in ubuntu 10.04.1
- by Bill Smith
I have got two NICs configured on a VM - each is tied to a specific network, one is a DMZ, the other is an internal network.
I want MySQL to listen on the internal network only and Apache on the DMZ listening for HTTP and HTTPS. But as soon as I add the second interface I run into trouble. I can hit HTTP on either interface, but can not hit 3306 on the internal network for MySQL.
Here's the config... could someone sanity check this please?
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 10.153.24.230
netmask 255.255.255.240
network 10.153.24.224
broadcast 10.153.24.239
dns-nameservers 8.8.8.8
auto eth1
iface eth1 inet static
address 10.153.24.195
netmask 255.255.255.224
gateway 10.153.24.193
broadcast 10.153.23.223