輸入以下 apt-get 指令:
$ sudo apt install bridge-utils
你需要編輯 /etc/network/interface 檔案。不過,我建議在 /etc/network/interface.d/ 目錄下放置一個全新的設定。在 Debian Linux 設定橋接器的過程如下:
使用 ip 指令:
$ ip -f inet a s
範例輸出如下:
2: eno1: mtu 1500 qdisc pfifo_fast state UP group default qlen 1000 inet 192.168.2.23/24 brd 192.168.2.255 scope global eno1 valid_lft forever preferred_lft forever
eno1 是我的實體網卡。
確保只有 lo(loopback 在 /etc/network/interface 中處於活動狀態)。 (LCTT 譯註:loopback 指本地環回接口,也稱為回送地址)刪除與 eno1 相關的任何配置。這是我使用 cat 命令 列印的設定檔:
$ cat /etc/network/interface # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback
使用文字編輯器建立一個文字文件,例如 vi 指令:
$ sudo vi /etc/network/interfaces.d/br0
在其中新增配置:
## static ip config file for br0 ## auto br0 iface br0 inet static address 192.168.2.23 broadcast 192.168.2.255 netmask 255.255.255.0 gateway 192.168.2.254 # If the resolvconf package is installed, you should not edit # the resolv.conf configuration file manually. Set name server here #dns-nameservers 192.168.2.254 # If you have muliple interfaces such as eth0 and eth1 # bridge_ports eth0 eth1 bridge_ports eno1 bridge_stp off # disable Spanning Tree Protocol bridge_waitport 0 # no delay before a port becomes available bridge_fd 0 # no forwarding delay
如果你想使用 DHCP 來取得 IP 位址:
## DHCP ip config file for br0 ## auto br0 # Bridge setup iface br0 inet dhcp bridge_ports eno1
在 vi/vim 中儲存並關閉檔案。
在重新啟動網路服務之前,請確保防火牆已關閉。防火牆可能會引用較老的接口,例如 eno1。一旦服務重新啟動,你必須更新 br0 介面的防火牆規則。鍵入以下命令重新啟動防火牆:
$ sudo systemctl restart network-manager
確認服務已重新啟動:
$ systemctl status network-manager
借助 ip 指令尋找新的 br0 介面和路由表:
$ ip a s $ ip r $ ping -c 2 cyberciti.biz
範例輸出:
你可以使用 brctl 指令查看網橋有關資訊:
$ brctl show
顯示目前網橋:
$ bridge link
作者是 nixCraft 的創建者,也是經驗豐富的系統管理員,DevOps 工程師以及 Linux 作業系統/ Unix shell 腳本的培訓師。透過訂閱 RSS/XML 串流 或 每週郵件推送獲得 SysAdmin, Linux/Unix 和開源主題的最新教學。
以上是老炮兒教你在 Debian Linux上設定橋的詳細內容。更多資訊請關注PHP中文網其他相關文章!