SSH DHCP Cisco
SSH DHCP Cisco
TOPIC :
Basic SSH & DHCP Cisco Configuration
DESCRIPTION :
Explain how to setting SSH & DHCP configuration on Cisco router. These
The is peripherals that will be used in this
article is :
This experiment was implemented on Packet Tracer 5.3 simulator. You can attempt using another simulator,
such as GNS3.
IMPLEMENTATION :
We’ll start SSH configuration first, I assume that you’ve already familiar with Cisco router command. OK, this is
my network topology :
SSH C ONFIGURATION
Router>enable
Router#configure terminal
We’ll make SSH connection through VTY (Telnet) line. Let’s see my configuration below
GNU Public Licensed 2010
Router(config)#line vty 0 4
Router(config-line)login local (pay attention to this command, this is very crucial part)
There is local parameter after login command, this is to activate password for SSH account. So, we
don’t need using telnet password to login with SSH account. Conversely, if you don’t set local
parameter, you should use telnet password while login via SSH.
Choose the size of the key modulus in the range of 360 to 2048 for your
General Purpose Keys. Choosing a key modulus greater than 512 may take a few minutes.
That’s all about how to configure SSH server on Cisco router. We can try the connection with many SSH
application both on Windows or Unix/Linux. I prefer using PUTTY or SecureCRT as my terminal application. On
linux you can try this command :
user@linux>ssh [email protected]
or
Now it’s time to continue our tutorial with DHCP Server Configuration on Cisco router. Follow these step to
activate DHCP server feature.
It consists of low and high IP address. It has function as IP address conflict avoidance on network.
©http://www.oscentre.co.nr
GNU Public Licensed 2010
2. Create DHCP Pool
Router(dhcp-config)#default-router 10.10.10.1
Router(dhcp-config)#dns-server 10.205.1.3
Router(dhcp-config)#exit
Router(config)#
ALL done! It’s very simple, isn’t it? Just try it by yourself. If you have any questions, don’t hesitate to contact me
at my lovely site. Ciao... !!!
REFERENCE :
http://www.blindhog.net
©http://www.oscentre.co.nr