Scan/Record application's outgoing IP requests? [closed] - ip

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
This question does not appear to be about programming within the scope defined in the help center.
Improve this question
How can I scan/record IP requests from a specific application or task? Could I do this purely in command line or is extra software required?

Wireshark is a very powerful tool for tracing connections and even examining packet content. By using the appropriate filters you can monitor all network activity of your application.

Related

Difference between a VPN that can access Netflix and one that can't? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
Obviously the difference is that one can and one cannot access Netflix. But how does Netflix ban VPNs while not catching VPNs designed specifically to access Netflix?
The main difference is the question of whether Netflix knows about them yet or not.
In time, the VPNs which can access Netflix today will likely end up being blocked by from accessing the service when Netflix's analysis of incoming connections reveals IP addresses which could belong to VPNs used to circumvent their restrictions.
It is possible that some operators of VPN services may make use of IP addresses which are changed periodically to make detection less likely and this is how they may go for an extended period of time without being blocked.

How do the routers know the complete topology of the network in link state routing? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
I know that in LSR, each router sends LSA packet to its neighbors, which is then flooded. But I can't figure out how the routers know the complete topology in this process.
Link state update packets contains information about originating router, its interfaces and neighbors connected via these interfaces, therefore, by collecting and joining this information any router can build graph of the network (or area) to which it belongs.

password protect prometheus access [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 10 months ago.
Improve this question
I am using prometheus to graph stats on my server. The problem is that that annybody can access the graphs from http://my.Ip.Adress:port/index.html. How can i password protect this access? alternatively: possible to password protect the port?
Prometheus doesn't have any built-in authentication or authorisation (there's just too many possible configurations), however you can use a reverse proxy to achieve this.
http://www.robustperception.io/adding-basic-auth-to-prometheus-with-nginx/ describes one way to do it.

How does IP prevent infinite loops? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
Question on a review:
If a packet is mistakenly routed in a closed loop among a number of machines, it could theoretically loop in the network forever. How does IP ensure that this cannot happen for Internet Packets?
There is such thing as TTL. You should perform basic internet search before posting a question.

telnetd accepts only one connection [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have got telnet server running on a bsd target. I want to connect to this target from multiple other machines. Surprisingly it does not allow more connections.
I checked why and found it is not listening(listen) in a loop. So, I kinda fixed it. But I was wondering is there any specific reason why telnetd code is kept with single connection at a time? (I am allowed to connect to telnetd server from only one client for a particular port.)
(I know telnet is not a safe option. But I am having just fun on small embedded platform and getting things working is more imp than security at this moment.)
Thanks
Telnet is supposed to be launched by inetd. You need to configure inetd to do the listening for you.
The wikipedia article that I linked to explains how to do that.

Resources