# 9/20 Records of the lecture ###### tags: `Networking` `cisco` > [TOC] # Remote login ## Telnet ``` line vty 0 4 #vty (vitual teletype terminal) password meowhecker #set local passwork is meowhecker login #use the password to do remote login transport input telnet #use telnet servic ``` R1  R2 ``` telnet 192.168.1.1 ```  We already login success ## SSH(Secure Shell OpenSSH is a standard protocol for security terminal connections. Configure the host username and password. ``` r1(config)#username meowhecker privilege 15 password meowhecker r1(config)#username meow privilege 15 secret meow r1(config)#enable secret meow r1(config)#enable password meowhecker ``` Show runing-configure ``` r1#show running-config ```  Configure cryptographic way ``` r1(config)#ip domain-name meowhecker.com r1(config)#crypto key generate rsa ``` start SSH connection ``` r1(config)#ip ssh version 2 r1(config)#line vty 0 4 r1(config-line)#login local r1(config-line)#tran r1(config-line)#transport inp r1(config-line)#transport input ssh ``` R2->R1  ## show vty information ``` do show run | s line vty ``` # Router Interface ## Logical Interface Logical interface isn't like the cable having the physical body, it's abstract and virtual. [Homework Loopback Interface](/IAsvOSjeQ_S5bhfkmgCTSg) ### Configure loopback   # Static Routing  ## Use DHCP to automatically set Ip address    ## Configure Static Routing    Ping host 
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up