Mình có đoạn cấu hình bridge_ports trên ubuntu:
Code:
sudo gedit /etc/network/interfaces
###############################
# Loopback interface
auto lo
iface lo inet loopback
# the bridge
auto br0
iface br0 inet manual
# Ethernet Interfaces you want to add to bridge !!!!
bridge_ports eth0 eth1
# Time to wait before loading the bridge
bridge_maxwait 0
# Mgmt Interface:
auto eth2
iface eth2 inet static
address 10.2.96.155
netmask 255.255.255.0
broadcast 10.2.96.255
gateway 10.2.96.254
#################################
Thì trên CentOS mình phải cấu hình thế nào vậy?
Thanks.