Skip to content

Commit

Permalink
README: Correct bridge interface configuration/script references
Browse files Browse the repository at this point in the history
The README was not reflecting the actual content of the scripts.
  • Loading branch information
64kramsystem committed Jan 21, 2021
1 parent dbc970f commit 932495d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ root@ucbvax:~# halt

`/etc/network/interfaces`
```
iface br0 inet static
iface virbr0 inet static
bridge_ports eth0
address 192.168.100.1
netmask 255.255.255.0
Expand All @@ -195,7 +195,7 @@ iface br0 inet static
```
#!/bin/sh
brctl addif br0 $1
brctl addif virbr0 $1
ifconfig $1 up
```

Expand All @@ -205,7 +205,7 @@ ifconfig $1 up
#!/bin/sh
ifconfig $1 down
brctl delif br0 $1
brctl delif virbr0 $1
```

## macOS bridged networking
Expand Down

0 comments on commit 932495d

Please sign in to comment.