ブリッジしたギガビットネットワークインターフェイスを使用する必要があります。
/ etc / network / interfacesは次のとおりです。
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
しかし、MTUは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のMTUを持っています、そして私のNASへの転送ははるかに高速です
しかし、私は/ etc / network / interfacesファイルでこれを行うだけだと思っていました:
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セクションからを削除し、ネットワークが起動した状態でPCを起動しましたが、MTUはまだ9000です
ブート時にeth0とeth1のMTUを9000に設定して、ブリッジを9000で実行するにはどうすればよいですか?
また、常に再起動せずに/ etc / network / interfacesをテストする方法はありますか?