- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Broadcast address
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
Forums
Discussions
Discussions
Discussions
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
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
09-11-2002 01:19 AM
09-11-2002 01:19 AM
What is the effect of the fact that the broadcast address still using an IP from the old network and how can I change the broadcast address?
Thanks for any help
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 01:43 AM
09-11-2002 01:43 AM
Re: Broadcast address
If all your systems are on NIS/DNS then broadcast matters otherwise doesn't.
However if u change the IP then you need to modify the same in /etc/hosts and /etc/rc.config.d/netconf file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 02:16 AM
09-11-2002 02:16 AM
Re: Broadcast address
Thanks for your reply
I don't use DNS or NIS as I only have a couple of servers. Does the broadcast address have any effect on the server?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 02:21 AM
09-11-2002 02:21 AM
Re: Broadcast address
It is advised to set the broadcast address for
the networks . Otherwise it will take 255.255.255.255 as the default broadcast address and will cause weird problems in some
networking servers like samba etc.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 02:24 AM
09-11-2002 02:24 AM
Re: Broadcast address
sorry Iam wrong in my previous post. If you
don't set any broadcast address. example for
ip address 90.0.0.1 and mask 255.0.0.0 by
default 90.255.255.255 is taken as broadcast
address.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 02:29 AM
09-11-2002 02:29 AM
SolutionBroadcast address is a communication from one point on the lan to all other points i.e. one machine broadcasting to other machines on the same LAN.
I is useful in the address resolution protocol (arp) where a system gets a broadcast from a point and makes an entry that is x.x.x.x ip has the ethernet address as 00:3c:4b:...
You can change the broadcast address in your /etc/rc.config.d/netconf file.
But whenever you configure your machine with a ip-address and the subnet mask the system automatically assigns a broadcast address by
doing a AND on the network ID and the subnet mask of the machine.
Though this is done by the system you can check your /etc/rc.config.d/netconf file for the correct values for the parameter
BROADCAST_ADDRESS
However the implications are
if a wrong broadcast address is assigned to a machine the machine may do a broadcast storm and this might cripple your network.
thanks