-3

When a computer, with IP address IPs and default gateway IPg, is sending a datagram to destination with IP address IPd on a different subnet, it will perform:
a)- ARP(IPg)
b)- ARP( IPd)
c)- ARP(IPs)
d)- ARP(0)

jack
  • 77
  • 1
  • 7
  • This doesn't seem like a programming question. See http://stackoverflow.com/help/on-topic – nos Dec 13 '16 at 08:07

1 Answers1

1

Sending packet to another subnet actually means sending packet to gateway, since gateway is responsible for proper routing between subnets. Thus computer will perform discovery of gateway MAC address unless it's cached.

nnovich-OK
  • 2,900
  • 2
  • 13
  • 16