I am learning socket programming using python
I have two laptops ( say A and B) connected to same WiFi. A pi is connected to A via Ethernet cable and sharing internet.
A has IP address 192.168.0.100 B has IP 192.168.0.101
A has Ethernet interface IP add 169.254.1.220
Pi has Ethernet interface IP add 169.254.1.230
Now, if I run server on A binding to 192.168.0.100 my client in B can talk to it and communicate , but
if I run server on pi binding to 169.254.1.230 my client in B cannot establish a connection. I don't know the reason behind this.Is 169... in some private/hidden LAN ? How make Pi and B communicate?
Thanks in advance