मुझे नेटवर्क इंटरफेस को गीगाबिट करना है जिसे मैंने ब्रिज किया है।
/ etc / नेटवर्क / इंटरफेस है:
auto lo
iface lo inet loopback
# Set up interfaces manually, avoiding conflicts with, e.g., network manager
iface eth0 inet manual
iface eth1 inet manual
# Bridge setup
auto br0
iface br0 inet static
bridge_ports eth0 eth1
address 192.168.88.2
broadcast 192.168.88.255
netmask 255.255.255.0
gateway 192.168.88.254
dns-nameservers 192.168.88.254
लेकिन एमटीयू केवल 1500 है
myth@myth:~$ traceroute --mtu 192.168.88.1
traceroute to 192.168.88.1 (192.168.88.1), 30 hops max, 65000 byte packets
1 RoboStation.local (192.168.88.1) 0.278 ms F=1500 0.279 ms 0.287 ms
यदि मैं निम्नलिखित कमांड चलाता हूं:
myth@myth:~$ sudo ifconfig eth0 mtu 9000
myth@myth:~$ sudo ifconfig eth1 mtu 9000
myth@myth:~$ traceroute --mtu 192.168.88.1
traceroute to 192.168.88.1 (192.168.88.1), 30 hops max, 65000 byte packets
1 RoboStation.local (192.168.88.1) 0.407 ms F=9000 0.422 ms 0.383 ms
अब मेरे पास 9000 का एमटीयू है और मेरे एनएएस में स्थानांतरण तेजी से हो रहे हैं
लेकिन, मुझे लगा कि मैं सिर्फ / etc / नेटवर्क / इंटरफेस फाइल में ऐसा करूंगा:
auto lo
iface lo inet loopback
# Set up interfaces manually, avoiding conflicts with, e.g., network manager
iface eth0 inet manual
mtu 9000
iface eth1 inet manual
mtu 9000
# Bridge setup
auto br0
iface br0 inet static
bridge_ports eth0 eth1
address 192.168.88.2
broadcast 192.168.88.255
netmask 255.255.255.0
gateway 192.168.88.254
dns-nameservers 192.168.88.254
mtu 9000
लेकिन नेटवर्क बूट पर आने में विफल रहता है
मैंने mtu 9000
br0 सेक्शन और पीसी बूट्स को नेटवर्क से हटा दिया है , लेकिन MTU अभी भी 9000 है
मैं बूट पर MT0 और eth1 के लिए MTU को 9000 पर कैसे सेट करूं ताकि पुल 9000 पर चले?
हर समय रिबूट किए बिना परीक्षण / आदि / नेटवर्क / इंटरफेस का एक तरीका भी है?