Tagged Questions
4
votes
3answers
243 views
How do I validate the ICMPv6 checksum? (Why am do I keep getting a checksum of 0x3fff?)
I'm working on a Linux userspace program that receives IPv6 router advertisement packets. As part of RFC4861 I need to verify the ICMPv6 checksum. Based on my research, most of which refers to the ...
2
votes
4answers
207 views
How to log every ICMP reply message
There is this question i ran into, how can we find the ip address of the ICMP reply message in GNU/Linux?
1
vote
1answer
65 views
ICMP sockets (linux)
Is it possible to use ICMP sockets under the IP protocol? Maybe something like:
socket(PF_INET, <type>, IPPROTO_ICMP)?
What should I put in the < type > field? I saw some examples using ...
1
vote
0answers
146 views
Why aren't ARP or ICMPv6 packets processed by a Linux TAP device
I am opening a TAP device using
p->fd = open("/dev/net/tun", O_RDWR);
// skipping error handling code
ifr.ifr_flags = IFF_TAP | IFF_ONE_QUEUE | IFF_NO_PI;
strncpy(ifr.ifr_name, p->name, ...
1
vote
3answers
183 views
C UDP server access problem
Suppose you have an UDP server running on port 9030 on Linux and you can't access somehow to that UDP Server. There is no firewall or similar set up preventing access to that UDP port. And also please ...
1
vote
3answers
270 views
Smart methods for an Embedded Linux device to detect Internet connectivity
Our team is developing a Internet Media device based on Linux 2.6. Currently we detect whether Internet connectivity is established (via a wired Ethernet i/f) by pinging www.google.com
Some networks ...
0
votes
1answer
49 views
ICMPv4/v6 redirect pkt received but route table not updated?
In FreeBSD/Linux, the ICMPv4/v6 Redirect pkt can be received by the OS, but the route table will not be changed accordingly?
I have enabled the necessary sysctl variables under /proc to accept the ...