- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- IP 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
11-03-2003 12:07 AM
11-03-2003 12:07 AM
In the process of building a server. Once I have a network connection, how do I obtain a IP address for my server? Thanks!
Kyle
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2003 12:10 AM
11-03-2003 12:10 AM
Re: IP Address
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2003 12:19 AM
11-03-2003 12:19 AM
Re: IP Address
#redhat-config-network
This could be redhat-config-netwrok-tui or -gui
depending on your interface
You also have to chose a static or a dynamic address and point to your dns (from your provider or your employers)
tell us more if need be
Hope this helps you
J-P
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2003 01:09 AM
11-03-2003 01:09 AM
Re: IP Address
I'm looking to join a network already containing a few thousand users. I have the LAN Line plugged in from the server to the wall. I'm just not sure everything I need to do in order to get a connection to FTP out and what not. Any additional help would be appreciated. Thanks
kyle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2003 01:22 AM
11-03-2003 01:22 AM
SolutionWithin Red Hat there are probably hundreds of little non-standard scripts you can run to connect to a DHCP server but in fact all you need to do is run "dhcpd" somewhere in your startup scripts something like "dhcpd -t 10 -d eth0".
If you need to get a static IP address from the network administrator, you'll also need the netmask and somewhere in your startup scripts put
ifconfig eth0 xxx.xxx.xxx.xxx netmask xxx.xxx.xxx.xxx
Those "xxx"'s should be replaced with your IP address and netmask.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2003 01:24 AM
11-03-2003 01:24 AM
Re: IP Address
Kyle