Rabu, 18 Oktober 2017

LAB.1.5 #SDN telnet cisco dengan python

oke gan, mari kita mulai dengan LAB simple terlebih dahulu, kita akan coba buat script python untuk remoter/telnet router cisco. langsung saja kita buat scriptnya (pythoncisco.py)


Yang harus disiapkan :
- GNS 3
- Router Cisco
- python 2.7 atau versi terbaru

saya anggap sudah tersedia yang dibutuhkan, cara menambahkan router di GNS, install python.

buat file python berikut  pythoncisco.py

import getpass
import sys
import telnetlib

HOST = "10.10.10.2" //ini untuk host yg akan di telnet
user = raw_input("Enter your remote account: ")
password = getpass.getpass()

tn = telnetlib.Telnet(HOST)

tn.read_until("Username: ")
tn.write(user + "\n")
if password:
    tn.read_until("Password: ")
    tn.write(password + "\n")
tn.write("enable\n")
tn.write("miftah\n") //ini password untuk enable cisco
tn.write("do show ip interfaces brief\n")
print tn.read_all()

config dulu cisconya :

enable password miftah
username huda password miftah
int fa0/0
ip add 10.10.10.2 255.255.255.0
line vty 0 4
login local 


konfigurasi komputer yang untuk telnet


jalankan program pythoncisco.py


 sekian .... 
Share:

0 komentar:

Posting Komentar