by graysky » Tue Jul 17, 2012 5:04 am
$this->bbcode_second_pass_quote('pepedog', 'n')etcfg
There might be one thing wrong in wiki, NETWORK in rc.conf has moved to /etc/rc.conf/netcfg
Network config in rc.conf is only for single interface.
I do not have /etc/rc.conf/netcfg on my Arch x86_64 box at all. Step 5 in the link I setup states:
$this->bbcode_second_pass_quote('', '5'). Change your networking configuration so that you just bring up your real Ethernet adapter without configuring it, allowing real configuration to happen on the bridge interface. In /etc/rc.conf:
eth0="eth0 up"
br0="dhcp"
INTERFACES=(eth0 br0)
Remember, especially if you are doing DHCP, it is essential that the bridge comes up AFTER the real adapter, otherwise the bridge will not be able to talk to anything to get a DHCP address!
If you have been giving eth0 a static IP address rather than using DHCP, give br0 similar settings: /etc/rc.conf:
eth0="eth0 0.0.0.0"
br0="br0 192.168.0.3 netmask 255.255.255.0 broadcast 192.168.0.255"
INTERFACES=(eth0 br0)
gateway="default gw 192.168.0.1"
ROUTES=(gateway)
and then in /etc/resolv.conf:
domain lan
nameserver 192.168.0.1