เหตุใดอุปกรณ์ br0 จึงมีอยู่แล้ว


1

ใน Ubuntu 16.04 เดสก์ท็อปของฉันฉันพยายามตั้งค่าบริดจ์ nic br0 ในของฉัน /etc/network/interfaces ดังต่อไปนี้

auto enp2s0
iface enp2s0 inet manual

auto br1
iface br1 inet dhcp
  pre-up ip link add veth0 type veth peer name veth1
  pre-up ifconfig veth0 up
  pre-up ifconfig veth1 up
  bridge_ports enp2s0 veth0
  bridge_maxwait 5
  bridge_stp off
  bridge_hw a8:20:66:06:71:50

ในขณะที่ทำการบู๊ตมันแสดงว่าเครือข่ายล้มเหลวและฉันก็ใช้ systemctl status networking.service ได้รับข้อความ:

● networking.service - Raise network interfaces
   Loaded: loaded (/lib/systemd/system/networking.service; enabled; vendor preset: enabled)
  Drop-In: /run/systemd/generator/networking.service.d
           └─50-insserv.conf-$network.conf
   Active: failed (Result: exit-code) since Mon 2016-11-28 02:21:12 CST; 56s ago
     Docs: man:interfaces(5)
  Process: 889 ExecStart=/sbin/ifup -a --read-environment (code=exited, status=1/FAILURE)
  Process: 884 ExecStartPre=/bin/sh -c [ "$CONFIGURE_INTERFACES" != "no" ] && [ -n "$(ifquery --read-environment --list --exclude=lo)" ]
 Main PID: 889 (code=exited, status=1/FAILURE)

Nov 28 02:21:09 iMac systemd[1]: Starting Raise network interfaces...
Nov 28 02:21:11 iMac ifup[889]: /sbin/ifup: waiting for lock on /run/network/ifstate.enp2s0
Nov 28 02:21:12 iMac ifup[889]: device br0 already exists; can't create bridge with the same name
Nov 28 02:21:12 iMac ifup[889]: run-parts: /etc/network/if-pre-up.d/bridge exited with return code 1
Nov 28 02:21:12 iMac ifup[889]: Failed to bring up br0.
Nov 28 02:21:12 iMac systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE
Nov 28 02:21:12 iMac systemd[1]: Failed to start Raise network interfaces.
Nov 28 02:21:12 iMac systemd[1]: networking.service: Unit entered failed state.
Nov 28 02:21:12 iMac systemd[1]: networking.service: Failed with result 'exit-code'.

ฉันสับสนมากว่าทำไมมันถึงบอกว่า br0 already exists. ถ้าฉันเปลี่ยน br0 กับ br1 ใน /etc/network/interfacesทุกอย่างทำงานได้ดี

ในเดสก์ท็อปอื่นของฉันภายใน LAN เดียวกัน (ต่อสายกับเราเตอร์ไร้สายเดียวกัน) ฉันตั้งชื่อสะพานเป็นแล้ว br0นั่นทำให้ฉันไม่สามารถตั้งชื่อบริดจ์ของฉันได้ br0 ในเดสก์ท็อปนี้หรือไม่

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.