Thanks again c0wb0y and lazydog.
I think my brain is in a loop. I decided to start over, use NetworkManager and figure out what it did. I reimaged my test PC with a snapshot from before I started messing with the network configuration. I enabled both NICs The wired NIC picked up 192.168.0.115 and the wireless 192.168.0.125. Everything seemed to work OK. I saved the state of things network thus
Code:
ifconfig > ifconfig.before
iptables-save > savedrules.before
cat /etc/sysctl.conf > sysctl.before
firewall-cmd --list-all-zones > zones.before
route -nv > route.before
I then edited the wired NIC using NetworkManager and changed it to "Shared with other computers." I saved the change, stopped and started the NIC and ran the above commands again - saving the results to .after files. ifconfig showed that the wired NIC was now on the 10.42.0 subnet
Code:
p1p2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 10.42.0.1 netmask 255.255.255.0 broadcast 10.42.0.255
Using a utility called Beyond Compare (scootersoftware.com) I examined the other files. I found NO changes to sysctl nor to the zones. The routing table changed thus
Code:
Before
------
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.0.1 0.0.0.0 UG 100 0 0 p1p2
0.0.0.0 192.168.0.1 0.0.0.0 UG 600 0 0 wlp2s0
192.168.0.0 0.0.0.0 255.255.255.0 U 100 0 0 p1p2
192.168.0.0 0.0.0.0 255.255.255.0 U 600 0 0 wlp2s0
After
-----
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.0.1 0.0.0.0 UG 600 0 0 wlp2s0
10.42.0.0 0.0.0.0 255.255.255.0 U 100 0 0 p1p2
192.168.0.0 0.0.0.0 255.255.255.0 U 600 0 0 wlp2s0
Most of the changes were evident in the saved rules as shown in the attachment below.
This worked, it was EASY and I will keep the rules comparison for study. Time to move on to something else - like actually setting my network up this way - and perhaps setting up DHCP on the "router" PC to server the 10.42.0 subnet.
Again, thanks for your input.
Ken