English 中文(简体)
Which router port address should respond with time to live exceeded in transit message?
原标题:

Given the following situation:

PC --- |aa  RTR1  bb| --- |aa  RTR2  bb| --- |aa  RTR3  bb| etc  

Each of the |aa rtr bb| is meant to be a router with two ports aa and bb.

When I do a trace route from my PC, which router port address should respond with time to live exceeded in transit message?

I seem to remember being taught to think of the router as being in as many parts as ports, so that in my scenario when aa is forwarding the packet to bb and decrements the TTL to 0, it will be the address of the aa port in the failure message. I am trying to find the definitive answer.

最佳回答

Since each router sends you the ICMP packet using aa and not using bb, the packet it sends will have aa s address and not bb s.

The router generates an ICMP packet and sends it to you. The source address the packet will have is the source address that this packet is sent from, aa s address.

问题回答

暂无回答




相关问题
Client ping to servers

I am wondering what would the best way to let visitors of a website ping various remote servers. Example: I am a visitor, I choose from a lsit of locations Paris, France and the script would ping from ...

How to do a true Java ping from Windows?

I have a device on a network that I am attempting to ping through my Java program. Through my windows command prompt, I can ping the device address fine and do a tracert on the address fine. Online, ...

Ping a network using threads and testing it

I am trying to ping two different networks with thread. I am able to get the response I want but I want to convert it into a test. I have the code that I have tried below but the test runner says that ...

Threading issues using Ping to map active IPs - C#

I am trying to create a simple Network Tool to ping all possible IPs on your local subnet and provide a list of such IPs in a DataGridView. I am new to having to consider threading which is a good ...

how to use ping in a script

I want a bash script that ll do: for c in computers: do ping $c if ping is sucessfull: ssh $c check something done If I only do ssh and the computer is iresponsive, it takes forever ...

热门标签