MERT SUNAR

System Administrator

Cyber Security

AI System Expert

Devops

Wordpress Expert

MERT SUNAR

System Administrator

Cyber Security

AI System Expert

Devops

Wordpress Expert

Blog Post

Temel Ruijie Switch Komutları

Haziran 6, 2023 Siber Güvenlik
Temel Ruijie Switch Komutları

 

Temel Ruijie Switch Komutları Listelenmiştir.

Ayrıcalıklı mod

enable

Yapılandırma Modu

configure terminal

Hostname Adı Verme

hostname <NewHostName>

Konfigürasyon Görüntüleme

show running-config

İnterface Ayarları

interface
interface ?

Komut Tamamlama

SW# show run<Tab>
SW# show running-config

Vlan Ayarları

SW1(config)# Interface VLAN 1
SW1(config-VLAN 1)# ip address 172.16.16.2 255.255.255.0
SW1(config-VLAN 1)# exit

Web Servisi Aktif Etme

enable service web-server all

Telnet İle Bağlanma

enable service telnet-server

Consol Arayüzüne Şifre Koyma

username admin secret Passw0rd
enable secret Passw0rd
line vty 0 4
login local

Vlan İsim Verme

SW1(config)# VLAN 50
SW1(config)# name Camera
SW1(config)# exit

Vlan Port Atama

SW1(config)#interface range gigabitEthernet 0/1-10
SW1(config-if-range)#switchport mode access
SW1(config-if-range)#switchport access vlan 50
SW1(config-if-range)#exit

Tüm interface durumunu görme

show interface status

Mac Adresi Görme

show mac-address-table | exclude TenGigabitEthernet
show mac-address-table

Cihazınız tarafından hangi portun kullanıldığını öğrenmek istiyorsanız aşağıdaki komutu kullanarak bulabilirsiniz.

sh mac-address-table dynamic address aaaa.bbbb.cccc.dddd

Diğer Network Cihazları Bulma

show lldp neighbors

VLAN’ları tüm ağa dağıtmak

gvrp enable
gvrp dynamic-vlan-creation enable

Poe Açma Kapama

shutdown
no shutdown

poe enable
no poe enable

Yapılandırma için python kodu
import paramiko
# switch’e SSH ile bağlan
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(“192.168.1.1″, port=22, username=”username”, password=”password”)

# VLAN oluştur
vlan_id = “10”
vlan_name = “VLAN10”
stdin, stdout, stderr = ssh.exec_command(“system-view”)
stdin.write(“vlan batch 10\nvlan name 10 VLAN10\n”)

# port’u VLAN’a ekle
port = “GigabitEthernet0/0/1”
stdin.write(“interface ” + port + “\nport link-type access\nport default vlan ” + vlan_id + “\nquit\n”)
ssh.close()

Related Posts
Write a comment