- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Setup the network
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
08-26-2003 11:21 PM
08-26-2003 11:21 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2003 11:25 PM
08-26-2003 11:25 PM
Re: Setup the network
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2003 12:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2003 12:23 AM
08-27-2003 12:23 AM
Re: Setup the network
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2003 12:53 AM
08-27-2003 12:53 AM
Re: Setup the network
try brining up the card with ifconfig to see if it works.
ifconfig eth0
echo $?
If you get a zero back, that means you suceeded.
ping
If you have multiple cards it might be eth1, etc
Common causes of the card not coming up include:
1) Invalid ip_address/network mask combination
2) Another device on your network has the IP adddres.
Check it out and get back to us with the contents of that ifcfg-eth0 file so we can run through it for you.
Good Luck,
Keep hacking away at Linux, its fun.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2003 03:08 AM
08-27-2003 03:08 AM
Re: Setup the network
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2003 04:28 PM
08-27-2003 04:28 PM
Re: Setup the network
rpm -q telnet-server
If this returns a single like, you have the appropraite software. If so, then you should be able to issue this:
chkconfig telnet on
and be able to telnet into the machine. Please note however that by default, you will not be able to log directly in as 'root' from a pseudo (network) tty.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2003 02:18 AM
08-28-2003 02:18 AM
Re: Setup the network
telnet send it password/user data in clear in clear on the net ssh is probably installed on you system and does the same only this is encrypted
have a look at ssh, sftp, scp man page and do
ls -l /usr/share/doc/openssh*
read the doc it is worth-it
login as as root to find out if this service is running do
#service sshd status
to start do
#service sshd start
now if you still want to use telnet to get it working you also have to check that this is not blocked by the level of security you shoose at installation time ? that is telnet port could be closed.
the ease way to check this from RH is to invole the setup command as root in the setup menu there is a firewall configuration (also service,network,printer,etc..).
Hope this get you even more addicted.
Jean-Pierre