- Community Home
- >
- Networking
- >
- Legacy
- >
- Switches, Hubs, Modems
- >
- Enable telnet access to router
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
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
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
тАО04-27-2004 05:55 AM
тАО04-27-2004 05:55 AM
Enable telnet access to router
I am new to cisco routers.
I want to allow telnet access to particular system/ip from outside(for all). How can I do it? Any help is appreciated.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2004 06:11 AM
тАО04-27-2004 06:11 AM
Re: Enable telnet access to router
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2004 12:41 PM
тАО04-27-2004 12:41 PM
Re: Enable telnet access to router
conf t
line vty 0 4
password MyNewPassword
login
end
wr me
I assume you already have an enable password.
Now telnet to one of the router's ip addresses and at the first password prompt use your equivalent of MyNewPassword. Then
en
and your enable password
Is that what you needed to know? Or are you wanting to restrict access to a certain IP address on the router?
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-28-2004 02:43 AM
тАО04-28-2004 02:43 AM
Re: Enable telnet access to router
But if you talking about telnet to any particular Server in the network then you need to write the access-list on router.
What i understood is you want to enable telnet to particular nodes from the enitre network to connect to a particular System/Server.
If You r looking for something like that i can help u with creating access-list on server with your valuable inputs!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-28-2004 02:45 AM
тАО04-28-2004 02:45 AM
Re: Enable telnet access to router
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-28-2004 03:12 AM
тАО04-28-2004 03:12 AM
Re: Enable telnet access to router
The 2950 is a Catalyst switch. Please make sure that you have purchased the correct product before proceeding.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-28-2004 06:52 AM
тАО04-28-2004 06:52 AM
Re: Enable telnet access to router
A simple filter to allow any outsider to telnet to a particular IP address (A.B.C.D), deny all others and permit all other traffic which is to be installed on your router on the interface which connects to the internet (Let's assume it is S0/0) would be:
conf t
access-list 100 permit tcp any host A.B.C.D eq 23
access-list 100 deny tcp any any eq 23
access-list 100 permit ip any any
int s0/0
ip access 100 in
end
wr me
However, if that's all the protection you have you have probably already been hacked.
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-28-2004 06:53 PM
тАО04-28-2004 06:53 PM
Re: Enable telnet access to router
But what you say is correct.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2004 01:10 AM
тАО04-29-2004 01:10 AM
Re: Enable telnet access to router
Since you are not using NAT your router will have probably have a static routing table which will need to be modified - I suggest you consult the person who did the initial configuration rather than supply these details to strangers.
Also permitting access from anyone (or all) is not advisable from a security standpoint - you should perhaps consider only allowing access from a particular host, or limited series of hosts - this can be done through the routers ACLs