We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87aca68 commit 649e306Copy full SHA for 649e306
netsim/providers/clab.py
@@ -49,7 +49,7 @@ def insert_ipv6_forwarding_rule( brname: str ) -> bool:
49
['sudo','nft',f'insert rule ip6 filter DOCKER-USER oifname "{brname}" counter accept'],
50
check_result=True,return_stdout=True)
51
log.print_verbose(f"Insert ipv6 nftables rule for Linux bridge '{brname}': {status}")
52
- return status
+ return status is not False
53
54
def destroy_linux_bridge( brname: str ) -> bool:
55
status = external_commands.run_command(
0 commit comments