Difference between revisions of "Cisco IOS command's equivalent in JUNOS"
From Tech-Wiki
Line 52: | Line 52: | ||
|clear interface statistics | |clear interface statistics | ||
|- | |- | ||
− | |sh ip arp | + | |sh ip arp // inc 10.0.0.1 |
− | |show arp no-resolve | + | |show arp no-resolve // find 10.0.0.1 |
|- | |- | ||
|clear arp-cache | |clear arp-cache |
Revision as of 13:22, 30 March 2021
Essentials JUNOS commands and its IOS counterpart
Cisco Command | JUNOS Equivalent |
---|---|
ping address | ping address rapid |
enable | configure |
show clock | show system uptime |
clock set | set date |
show environment | show chassis environment |
show ip traffic | show system statistics |
show processes cpu | show system processes |
show running-config | show configuration |
show tech-support | request support information |
show ip interface brief | show interfaces terse |
show ip route | show route |
write memory | commit |
show route-map | show policy |
clear counters | clear interface statistics |
sh ip arp // inc 10.0.0.1 | show arp no-resolve // find 10.0.0.1 |
clear arp-cache | clear arp |
show ip bgp | show route protocol bgp |
show ip bgp neighbors address advertised-routes | show route advertising-protocol bgp address |
show ip bgp regexp | show route aspath-regex |
clear ip bgp | clear bgp neighbour |
reload | request system reboot |
terminal length 0 | set cli screen-length 0 |
terminal monitor | monitor start messages |
terminal no monitor | monitor stop |
write erase / erase startup-config | load factory-default |
enable password | set system root-authentication plain-text-password |
ip address 172.16.1.1 255.255.255.0 | set interfaces ge-1/2/0 unit 0 family inet address 172.16.1.1/24 |
ip route 10.0.0.0 255.0.0.0 172.16.1.2 | set routing-options static route 10.0.0.0/8 next-hop 172.16.1.2 |