Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: How do I increase the TTL on a socket?

by c-era (Curate)
on May 16, 2000 at 18:40 UTC ( [id://11856]=note: print w/replies, xml ) Need Help??


in reply to How do I increase the TTL on a socket?

I found my own answer:
use Socket; $host="somehost"; socket(SOCK,PF_INET, SOCK_RAW, getprotobyname('icmp')) || die $!; send (SOCK, pack("C2 S5", 17, 0, 0xc898,0x2667,0,0,0),0,sockaddr_in (0 +,inet_aton($host))) || die $!; ^
The flag was just set wrong, I also found out how to change the TTL (at least for Solaris):
setsockopt (SOCK,0,4,<TTL>);

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11856]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-19 05:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found