Home | Mirror | Search

4. brctl

Linux 系統4個物理網卡的名稱則分別為eth0,eth1,eth2,eth3。我們將四個網口橋接到br0連接埠。

你可以這樣理解 vlan 2, vlan ip 192.168.0.1,然後將4個介面劃分到vlan2, 這時這4個介面可以通過vlan 2訪問其他用戶。我只是做了一個比喻,讓你能夠理解。


		
# brctl addbr br0

# brctl addif br0 eth0
# brctl addif br0 eth1
# brctl addif br0 eth2
# brctl addif br0 eth3

# ifconfig eth0 0.0.0.0
# ifconfig eth1 0.0.0.0
# ifconfig eth2 0.0.0.0
# ifconfig eth3 0.0.0.0

# ifconfig br0 192.168.0.1
		
comments powered by Disqus