Re: [Tutor] First Project - Ping Sweeper!

2005-07-12 Thread Reed L. O'Brien
Python wrote: > ping uses icmp. icmp does not have port numbers. icmp is a host-to- > host protocol for managing the flow of packets and reporting errors. > http://en.wikipedia.org/wiki/ICMP_Echo_Request > describes the outgoing "ping packet", but is probably too low-level to > be useful. > > Por

[Tutor] First Project - Ping Sweeper!

2005-07-12 Thread Python
ping uses icmp. icmp does not have port numbers. icmp is a host-to- host protocol for managing the flow of packets and reporting errors. http://en.wikipedia.org/wiki/ICMP_Echo_Request describes the outgoing "ping packet", but is probably too low-level to be useful. Port numbers are used in UDP a

[Tutor] First Project - Ping Sweeper!

2005-07-12 Thread Trent Rigsbee
Hi! I've completed Learning to Program (off the website) and I've started to play around with code that I've found on Useless Python. I'm ready to start my first project! This may be way over my head, but I want to make a ping sweeper (put a range of IP addresses & ping to see which are vaild).