Skip to content

Commit

Permalink
network: fix default default value for --disable-layer3
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarning committed Aug 10, 2023
1 parent fcca508 commit 38e4034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion network.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ def main():
parser.add_argument('--verbosity', choices=['verbose', 'normal', 'quiet'], default='normal', help='Set verbosity.')
parser.add_argument('--link-command', help='Execute a command to change link properties. JSON elements are accessible. E.g. "myscript.sh {ifname} {tq}"')
parser.add_argument('--node-command', help='Execute a command to change link properties. JSON elements are accessible. E.g. "myscript.sh {ifname} {id}"')
parser.add_argument('--disable-layer3', action='store_false', help='Disable IP addresses on mesh interface.')
parser.add_argument('--disable-layer3', action='store_true', help='Disable IP addresses on mesh interface.')
parser.add_argument('--remotes', help='Distribute nodes and links on remotes described in the JSON file.')
parser.add_argument('--mtu', type=int, default=1500, help='Set Maximum Transfer Unit (MTU) on each interface.')

Expand Down

0 comments on commit 38e4034

Please sign in to comment.