My computers aren't talking to each other

-3

Here's the IPConfig:

Computer 1:

IP address 192.168.110.101

Subnet mask 255.255.255.0

Default gateway 192.168.110.1


Computer 2:

IP address 192.168.111.102

Subnet mask 255.255.255.0

Default gateway 192.168.110.1

I have no idea about networking stuff. Please help

Jazz Man

Posted 2013-08-29T18:38:19.530

Reputation: 99

Question was closed 2013-08-29T18:56:26.627

2What do you mean they are not talking to each other? How did you determine that? – Ramhound – 2013-08-29T18:41:46.423

1

Recommended reading: http://serverfault.com/questions/49765/how-does-ipv4-subnetting-work.

– Hennes – 2013-08-29T18:46:23.930

What do you mean by "not talking to each other?" What service are you trying to use? What are you trying to accomplish over the network? Try to "ping 192.168.110.101" from the command line of Computer 2, and vise versa. What do you get? – tylerm – 2013-08-29T18:42:54.057

Answers

2

192.168.110.101/255.255.255.0 and 192.168.111.102/255.255.255.0 are two different networks.

As-written in the question 192.168.111.102 won't make it anywhere, since it's Gateway is on a different network (192.168.110.x)

Either make them something like 192.168.110.101 and 192.168.110.102 (with mask 255.255.255.0), or change both masks to 255.255.0.0 to widen the scope of the network.

Perhaps check out this Wikipedia article on subnetting IPv4 for more info.

Ƭᴇcʜιᴇ007

Posted 2013-08-29T18:38:19.530

Reputation: 103 763