diff --git a/net.pl b/net.pl index 9a4bae1..1bc2eb6 100755 --- a/net.pl +++ b/net.pl @@ -31,7 +31,7 @@ my $scriptname = "$0 @ARGV"; -my @allifaces = qw(bge bnxt em igc ix ixl re vio vmx); +my @allifaces = qw(bge bnxt em ice igc ix ixl re vio vmx); my @allmodifymodes = qw(none jumbo nolro nopf notso); my @allpseudos = qw(none bridge carp gif gif6 gre veb vlan vxlan wg); my @allsetupmodes = (qw(build install upgrade sysupgrade keep kernel reboot diff --git a/netlink-html.pl b/netlink-html.pl old mode 100755 new mode 100644 index 229cfef..ccca0ac --- a/netlink-html.pl +++ b/netlink-html.pl @@ -33,7 +33,7 @@ my $now = strftime("%FT%TZ", gmtime); -my @allifaces = qw(bge bnxt em igc ix ixl re vio vmx); +my @allifaces = qw(bge bnxt em ice igc ix ixl re vio vmx); my %opts; getopts('d:h:lv', \%opts) or do { @@ -310,6 +310,7 @@ sub html_hier_test_row_utilization { "iface-bge" => 10 ** 9, "iface-bnxt" => 10 * 10 ** 9, "iface-em" => 10 ** 9, + "iface-ice" => 10 * 10 ** 9, # XXX faster devices exist "iface-igc" => 2.5 * 10 ** 9, "iface-ix" => 10 * 10 ** 9, "iface-ixl" => 10 * 10 ** 9, diff --git a/netlink.pl b/netlink.pl index 0106ce4..907031d 100755 --- a/netlink.pl +++ b/netlink.pl @@ -27,7 +27,7 @@ use lib dirname($0); use Netstat; -my @allifaces = qw(none bge bnxt em igc ix ixl re vio vmx); +my @allifaces = qw(none bge bnxt em ice igc ix ixl re vio vmx); my @allmodifymodes = qw(none jumbo nolro nopf notso); my @allpseudos = qw(none bridge carp gif gif6 gre veb vlan vxlan wg); my @alltestmodes = sort qw(all icmp tcp udp splice);