- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ping multicast
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-11-2002 11:52 AM
тАО01-11-2002 11:52 AM
ping multicast
ping -i 238.0.0.1 s2500d
response:
ping: cannot set multicast source interface: Can't assign requested address
any ideas ?
MDF
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-11-2002 12:00 PM
тАО01-11-2002 12:00 PM
Re: ping multicast
interface is capable of multicasting:
ifconfig lan0
You should see this information in the first line of response:
lan0: flags=843[UP,BROADCAST,RUNNING,MULTICAST]
This entry indicates that the interface is up and running, and capable
of sending broadcast and multicast packets.
One of the basics of multicasting is that there must be a route to
reach the network. If you do not have a default route
to the network, you can use the following command to add a
a default route:
/usr/sbin/route add net (IP ADDRESS ) [ip address of interface to do
multicasting]
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-11-2002 12:02 PM
тАО01-11-2002 12:02 PM
Re: ping multicast
This may help you:
http://us-support.external.hp.com/cki/bin/doc.pl/sid=33ce4cec1942777176/screen=ckiDisplayDocument?docId=200000006425690
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-11-2002 12:43 PM
тАО01-11-2002 12:43 PM
Re: ping multicast
#
# ifconfig lan0
lan0: flags=843
inet 192.168.2.210 netmask ffffff00 broadcast 192.168.2.255
# /usr/sbin/route add net 238.0.0.1 1
add net 238.0.0.1: gateway 1: Network is unreachable
you have mail in /var/mail/root
# netstat -rn
Routing tables
Dest/Netmask Gateway Flags Refs Use Interface Pmtu
127.0.0.1 127.0.0.1 UH 0 907332 lo0 4136
192.168.2.226 192.168.2.226 UH 0 2901267 lan0:1 4136
192.168.13.210 192.168.13.210 UH 0 0 lan5 4136
192.168.2.210 192.168.2.210 UH 0 3318591 lan0 4136
192.168.2.0 192.168.2.210 U 3 0 lan0 1500
192.168.2.0 192.168.2.226 U 3 0 lan0:1 1500
192.168.13.0 192.168.13.210 U 2 0 lan5 1500
127.0.0.0 127.0.0.1 U 0 0 lo0 4136
default 192.168.2.1 UG 0 0 lan0 150
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-11-2002 05:30 PM
тАО01-11-2002 05:30 PM
Re: ping multicast
route add net 238.0.0.1
check out the man page for the route command.
hth
mark