14 lines
217 B
Text
14 lines
217 B
Text
|
#!/usr/sbin/nft -f
|
||
|
|
||
|
# Allow all traffic from usb-ethernet interfaces for debugging
|
||
|
# and porting.
|
||
|
|
||
|
table inet filter {
|
||
|
chain input {
|
||
|
|
||
|
# allow all from USB net
|
||
|
iifname "usb*" accept comment "accept USB net"
|
||
|
|
||
|
}
|
||
|
}
|