https://bugs.kde.org/show_bug.cgi?id=516712

--- Comment #2 from Zesko <[email protected]> ---
> This is bumping up against the limits of my networking knowledge. Can you
> walk me through how to create a bridge connection that reproduces the issue
> so I can investigate?

@Nate Graham

Thanks for the quick reply.

1. Create a new bridge device using nmcli (NetworkManager CLI)
```
nmcli connection add type bridge ifname "br0" stp no
```

2. run "ip -c addr" to check your ethernet interface name (for example:
enp30s0).
then add it as a bridge slave:
```
nmcli connection add type bridge-slave ifname enp30s0 master br0
```

3. disconnect your current LAN connection in NetworkManager GUI or CLI (you’ll
switch from LAN to the bridge):
```
nmcli connection down "<your current LAN connection name>"
```

4. bring up the new bridge:
```
nmcli connection up bridge-br0
nmcli connection up bridge-slave-enp30s0
```

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to