- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- route table and rlogin
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
01-11-2004 01:36 PM
01-11-2004 01:36 PM
My system's platform is linux redhat, and I have two questions:
1. How to permently change the route table, which file? I know i could use # route ....
command to change it temporally, but after I reboot the system, all the changes are gone.
2. I could be able to # rlogin A from this system, but in A system I couldn't rlogin to this system. it always prompt for password, and even I key in the correct password, but still failed. Any file is controlling this?
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2004 03:51 PM
01-11-2004 03:51 PM
Re: route table and rlogin
BTW, on Redhat, static routes added through the redhat-config-network tool persist across reboots. Not sure where these route entries are stored though.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2004 04:05 PM
01-11-2004 04:05 PM
Re: route table and rlogin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2004 05:05 PM
01-11-2004 05:05 PM
SolutionThe simple answer is the rc.local, but that takes control away from any of the GUI type of interfaces that are written.
To do it the 'RH Way', you modify either /etc/sysconfig/network (for a default route), or /etc/sysconfig/static-routes for other partial routes, or interface based routes.
As for the 'rlogin' thing, there are a number of possible reasons.
With the description you've given, it sounds like you're the 'root' user. BY default, a RH system will not allow the root user to log in directly to a pseudo TTY (telnet, rlogin etc.).
There are two ways around this:
modify /etc/securetty, add 'rlogin'.
modify /etc/pam.d/rlogin, remove the line 'auth required /lib/security/pam_securetty.so'
Both of these options have the same end goal: allow root to 'rlogin' via a pseudo-tty.
If it isn't the root user, and you're still getting the error, then I'm picking it's the permissions on your .rhosts file. It should be 600 (-rw-------).
Have fun.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2004 10:27 PM
01-11-2004 10:27 PM
Re: route table and rlogin
Thanks. it did work.
i would like to know what's the purpose to add "rlogin" entry in /etc/securetty?
Where can I find the detailed information about the different "auth entry" inside /etc/pam.d/rlogin?
Regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2004 11:28 AM
01-12-2004 11:28 AM
Re: route table and rlogin
The pam_securetty.so has hardwared 2 (or 3?) overrides. rlogin, rsh are two of them, to allow those services to go in as root (which kidna defeats the purpose, but hey!).