Thank you for taking the time to consider this. Apologies for the incomplete information. Please see below for my responses.
First, your post is not a “duplicate post” if you are posting about your problem for the first time, the answer won’t necessarily be exactly the same as what someone else posted about which might only appear similar.
Your post is a bit unclear because for instance there are dual meanings to “bridge” the way you used it.
To clarify,
Post the results of the following
On your Host
ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: enp0s25: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN group default qlen 1000
link/ether c4:34:6b:05:54:c1 brd ff:ff:ff:ff:ff:ff
3: wlo1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether c4:d9:87:ba:fa:4f brd ff:ff:ff:ff:ff:ff
inet 192.168.129.209/24 brd 192.168.129.255 scope global dynamic wlo1
valid_lft 22535sec preferred_lft 22535sec
inet6 fe80::c6d9:87ff:feba:fa4f/64 scope link
valid_lft forever preferred_lft forever
4: virbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether 52:54:00:25:65:32 brd ff:ff:ff:ff:ff:ff
inet 10.20.15.1/24 brd 10.20.15.255 scope global virbr0
valid_lft forever preferred_lft forever
inet6 fe80::5054:ff:fe25:6532/64 scope link
valid_lft forever preferred_lft forever
5: virbr0-nic: <BROADCAST,MULTICAST> mtu 1500 qdisc pfifo_fast master virbr0 state DOWN group default qlen 500
link/ether 52:54:00:25:65:32 brd ff:ff:ff:ff:ff:ff
8: vnet0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master virbr0 state UNKNOWN group default qlen 500
link/ether fe:54:00:5f:3b:72 brd ff:ff:ff:ff:ff:ff
inet6 fe80::fc54:ff:fe5f:3b72/64 scope link
valid_lft forever preferred_lft forever
brctl show
bridge name bridge id STP enabled interfaces
virbr0 8000.525400256532 yes virbr0-nic
vnet0
brctl show *bridgename*
bridge name bridge id STP enabled interfaces
virbr0 8000.525400256532 yes virbr0-nic
vnet0
In your Guest
ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master br0 state UP group default qlen 1000
link/ether 52:54:00:5f:3b:72 brd ff:ff:ff:ff:ff:ff
3: br0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether 52:54:00:5f:3b:72 brd ff:ff:ff:ff:ff:ff
inet 10.20.15.210/24 brd 10.20.15.255 scope global br0
valid_lft forever preferred_lft forever
inet6 fe80::5054:ff:fe5f:3b72/64 scope link
valid_lft forever preferred_lft forever
Additionally, although probably not critical it would be useful to know what method or tool you used to create your virtual networking.
I created the virtual network using virt-manager
Lastly, although “rcnetwork” might still work, you would be better advised to use systemd commands for things like managing services. The systemd equivalent to what you are doing is
systemctl restart network
With the above command you can also start|stop a service or app (The above is actually network.service but if the name is unique enough you don’t have to type the entire name).
Thanks for the tip. I guess I am just not quite used to the systemd way of things.