Okay, I decided to start over.
I got rid of virbr0.
I renamed. ifcfg-br0 to ifcfg-br0.bu.
I setup everything to work with eth0.
Rebooted
Now my network works. I am able to ping everything from everywhere.
Oddly, br0 still comes up on an ifconfig, even though there is no ifcfg-br0 file. Still getting different IP addresses for eth0 and br0, even though I have changed the MAC address. Also br0 and eth0 have different MAC address, no idea how that is happening. Also, br0 seems to come up with a different MAC address every time I reboot.
Code:
$ brctl show
bridge name bridge id STP enabled interfaces
br0 8000.000000000000 no
$ ifconfig
br0 Link encap:Ethernet HWaddr 7E:AA:AA:38:E6:32
inet addr:192.168.1.109 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::7caa:aaff:fe38:e632/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:13 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:830 (830.0 b)
eth0 Link encap:Ethernet HWaddr 94:DE:80:2F:C5:8B
inet addr:192.168.1.105 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::96de:80ff:fe2f:c58b/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:30965 errors:0 dropped:0 overruns:0 frame:0
TX packets:18550 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:33613375 (32.0 MiB) TX bytes:3450316 (3.2 MiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:109 errors:0 dropped:0 overruns:0 frame:0
TX packets:109 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:11809 (11.5 KiB) TX bytes:11809 (11.5 KiB)
$ cat ifcfg-eth0
DEVICE="eth0"
BOOTPROTO="dhcp"
#NM_CONTROLLED="yes"
ONBOOT="yes"
TYPE="Ethernet"
UUID="08986b4c-ed59-41f4-b329-f08e3100af28"
HWADDR="94:DE:80:2F:C5:8B"
#HWADDR="00:30:67:6F:7B:D1"
IPADDR=192.168.0.109
PREFIX=24
GATEWAY=192.168.0.1
DNS1=75.75.75.75
DNS1=75.75.76.76
DEFROUTE=yes
IPV4_FAILURE_FATAL=yes
IPV6INIT=no
NAME="System eth0"
#BRIDGE=br0
$ cat ifcfg-br0.bu
DEVICE="br0"
#NM_CONTROLLED="yes"
ONBOOT=yes
TYPE=Bridge
BOOTPROTO=none
IPADDR=192.168.1.109
PREFIX=24
GATEWAY=192.168.1.1
DNS1=75.75.75.75
DNS2=75.75.76.76
DEFROUTE=yes
IPV4_FAILURE_FATAL=yes
IPV6INIT=no
NAME="System br0"