• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.
Xin chào ! Nếu đây là lần đầu tiên bạn đến với diễn đàn, xin vui lòng danh ra một phút bấm vào đây để đăng kí và tham gia thảo luận cùng VnPro.

Announcement

Collapse
No announcement yet.

Truy cập vào router dùng SDM Phần 1

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Truy cập vào router dùng SDM Phần 1

    Để có thể truy cập vào router dùng SDM, các bạn thực hiện các bước như sau:


    Follow the instructions below to configure a router to run SDM.

    Step 1:

    1. Connect to your router using Telnet, SSH or via console.
    2. Enter the global configuration mode using the command:
    Code:
    Router>enable
    Router#conf terminal
    Router(config)#
    Step 2 :
    Code:
    Enable the router's HTTP/HTTPS server, using the following Cisco IOS commands:
    
    Router(config)# ip http server
    
    Router(config)# ip http secure-server
    
    Router(config)# ip http authentication local
    
    Note:- HTTPS is enabled only for crypto enabled IOS images.
    Step 3:

    Create a user with privilege level 15.
    [Code]

    Router(config)# username <username> privilege 15 password 0 <password>

    Note:- Replace <username> and <password> with the username and password that you want to configure.
    [Code]

    Step 4:

    Configure SSH and Telnet for local login and privilege level 15:
    Code:
    Router(config)# line vty 0 4
    
    Router(config-line)# privilege level 15
    
    Router(config-line)# login local
    
    Router(config-line)# transport input telnet
    
    Router(config-line)# transport input telnet ssh
    
    Router(config-line)# exit
    Step 5: (Optional) Enable local logging to support the log monitoring function:
    Code:
    Router(config)# logging buffered 51200 warning
    Chú ý là các bạn phải tạo thêm một user có level 15.

Working...
X