1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-03-03 07:33:50 +00:00

139 lines
1.4 KiB
Plaintext
Raw Normal View History

nft \
list \
table \
ip \
libvirt_network
nft \
add \
table \
ip \
libvirt_network
nft \
add \
chain \
ip \
libvirt_network \
forward \
'{ type filter hook forward priority 0; policy accept; }'
nft \
add \
chain \
ip \
libvirt_network \
guest_output
nft \
insert \
rule \
ip \
libvirt_network \
forward \
counter \
jump \
guest_output
nft \
add \
chain \
ip \
libvirt_network \
guest_input
nft \
insert \
rule \
ip \
libvirt_network \
forward \
counter \
jump \
guest_input
nft \
add \
chain \
ip \
libvirt_network \
guest_cross
nft \
insert \
rule \
ip \
libvirt_network \
forward \
counter \
jump \
guest_cross
nft \
add \
chain \
ip \
libvirt_network \
guest_nat \
'{ type nat hook postrouting priority 100; policy accept; }'
nft \
list \
table \
ip6 \
libvirt_network
nft \
add \
table \
ip6 \
libvirt_network
nft \
add \
chain \
ip6 \
libvirt_network \
forward \
'{ type filter hook forward priority 0; policy accept; }'
nft \
add \
chain \
ip6 \
libvirt_network \
guest_output
nft \
insert \
rule \
ip6 \
libvirt_network \
forward \
counter \
jump \
guest_output
nft \
add \
chain \
ip6 \
libvirt_network \
guest_input
nft \
insert \
rule \
ip6 \
libvirt_network \
forward \
counter \
jump \
guest_input
nft \
add \
chain \
ip6 \
libvirt_network \
guest_cross
nft \
insert \
rule \
ip6 \
libvirt_network \
forward \
counter \
jump \
guest_cross
nft \
add \
chain \
ip6 \
libvirt_network \
guest_nat \
'{ type nat hook postrouting priority 100; policy accept; }'