Configurazione Jumbo Frame Aruba InstantON FortiGate Proxmox
Configurazione Jumbo Frame Aruba InstantON FortiGate Proxmox
Guida alla configurazione di Jumbo Frame su switch Aruba InstantON, firewall FortiGate e hypervisor Proxmox per ottenere frame fino a 9216 byte. Include configurazione LACP, MSS Clamping e procedure di test con ping e iperf3.
Punti chiave
- Auba InstantON: Jumbo Frames attivabili da Switching -> Port Configuration -> Jumbo Frames
- Aruba InstantON: MTU massimo 9216 byte su tutte le porte una volta abilitato
- Aruba InstantON: Trunk Configuration con LACP su 4 porte per bond Proxmox
- FortiGate: configurazione MTU override via CLI con set mtu-override enable e set mtu 9000
- FortiGate: MSS Clamping obbligatorio sulle policy WAN con tcp-mss-sender 1460 e tcp-mss-receiver 1460
- Proxmox: MTU 9000 su tutti i livelli (bond, interfacce di rete, bridges)
- Proxmox bond0: mode LACP (802.3ad), hash policy layer2, slaves nic0 nic1 nic2 nic3Test ping: datasize 8972 (9000-20 header IP-8 header ICMP), df-bit yes
- Test bandwidth: iperf3 su TrueNAS (server) e Proxmox (client)
- Test VM -> Proxmox:
ping -M do -s 8972 <IP>per validare bridge vmbr0 - FortiGate traffic test: diagnose traffictest port 5201
Comandi
config system interface
edit "nome_tua_interfaccia"
set mtu-override enable
set mtu 9000
next
end
config firewall policy
edit <ID_DELLA_POLICY_INTERNET>
set tcp-mss-sender 1460
set tcp-mss-receiver 1460
next
end
execute ping-options datasize 8972
execute ping-options df-bit yes
execute ping-options source <IP_DEL_FORTIGATE>
iperf3 -s
# Su client
iperf3 -c <IP_TRUENAS> -P 4
ping -M do -s 8972 192.168.1.1
diagnose traffictest port 5201
diagnose traffictest client-intf lan
diagnose traffictest run -c <IP_PROXMOX>