Do you familiar with *nix Cron Schedule / *nix Crontab Schedule ? How about Kron Schedule in Cisco IOS
Warning be carefull with this example about configure replace at hh:mm
old configure
ip route 0.0.0.0 0.0.0.0 161.1.78.8
new configure (flash:test)
ip route 0.0.0.0 0.0.0.0 161.1.78.8 --> delete it
configure kron schedule
configure terminal
kron policy-list remove-static-route
cli configure replace flash:test force
kron occurrence remove-static-route at 22:49 oneshot
policy-list remove-static-route
step by step, verify, debug
Router#sh clock
22:48:07.145 UTC Wed Aug 20 2008
Router#sh kron schedule
Kron Occurrence Schedule
remove-static-route inactive, will run once in 0 days 00:01:09 at 22:49 on
Router#debug kron all
All kron debug flags are on
Router#sh debug
Kron:
Kron debugs, failure messages debugging is on
Kron debugs, informational and minor warning messages debugging is on
Kron cli occurrence messages debugging is on
Router#sh kron schedule
Kron Occurrence Schedule
remove-static-route inactive, will run once in 0 days 00:00:50 at 22:49 on
Router#sh ip ro static
S* 0.0.0.0/0 [1/0] via 161.1.78.8
Router#
5w1d: Major 1, Minor 0
5w1d: Timer Event remove-static-route
5w1d: Call parse_cmd 'configure replace flash:test force'
5w1d: Rollback:Acquired Configuration lock.
5w1d: Occurrence remove-static-route is active, it will be removed when inactive
5w1d: Policy remove-static-route is Active, cannot be removed yet
Router#
5w1d: %PARSER-3-BADUNLOCKREQ: Unlock requested by process id '225' name 'Kron CLI Process' debug info 'Rollback'. You are not the lock owner
Router#
5w1d: Kron CLI return 0
'
**CLI 'configure replace flash:test force':
Total number of passes: 1Rollback Done'
5w1d: Major 4, Minor 7
5w1d: Respond to end of CLI Process
5w1d: Forcing Removing Policy remove-static-route
5w1d: Removing Policy remove-static-route
5w1d: Removing CLI 'configure replace flash:test force'
5w1d: Done Removing Policy remove-static-route
5w1d: Forcing Removing Occur remove-static-route
5w1d: Removing Occur remove-static-route
5w1d: Removing Policy Name 'remove
Router#-static-route'
5w1d: Finished Removing Occurrence remove-static-route
Router#show ip route static
Router#sh kron schedule
Kron Occurrence Schedule
Wednesday, August 20, 2008
Sunday, August 17, 2008
Berbeda-beda Tetapi Tetap Satu
Mungkin blog ini banyak dibahas hal-hal tentang network IP (internet protocol) dari Cisco, teknologi, konfigurasi, trik dan yang lain. Apakah hanya Cisco yang bermain dalam hal network tersebut jawabnya tidak, banyak perusahaan lain selain Cisco bermain di network sebut saja Juniper dengan JunOS-nya (sistem operasi router Juniper, sistem operasi router Cisco adalah IOS). Bisa dibilang pesaing Cisco dan banyak bermain dalam core network.
Disini akan saya tulis beberapa command yang mempunyai fungsi sama JunOS dan IOS
1# menampilkan daftar interface secara kolom berserta IP address
JunOS> show interfaces terse
IOS# show ip interface brief
2# menampilkan konfigurasi router
JunOS> show configuration
IOS# show running-config
3# mengambil baris yang diinginkan
JunOS> show configuration | match nnnnn
IOS# show running-config | include nnnnn
4# mengambil sekumpulan baris yang diinginkan dari awal
JunOS> show configuration | find nnnnn
IOS# show running-config | begin nnnnn
5# menampilkan routing tabel router
JunOS> show route
IOS# show ip route
6# menampilkan BGP peering
JunOS> show bgp summary
IOS# show ip bgp summary
7# menampilkan prefix yang di-advertise ke BGP peering a.a.a.a
JunOS> show route advertising-protocol bgp a.a.a.a
IOS# show ip bgp neighbor a.a.a.a advertised-routes
8# menampilkan prefix yang di-terima dar BGP peering a.a.a.a
JunOS> show route receive-protocol bgp a.a.a.a
IOS# show ip bgp neighbor a.a.a.a routes
9# menampilkan user yang sedang telnet
JunOS> show system users
IOS# who
10# menampilkan berapa lama waktu router menyala (waktu nyala)
JunOS> show system uptime
IOS# show version
11# menampilkan log router
JunOS> show log /var/log/messages
IOS# show logging
12# menampilkan cpu proses
JunOS> show system processes
IOS# show processes
Di atas terdapat perbedaan dalam penyampaian dari masing-masing sistem operasi namun maksudnya sama. Sama seperti suatu bangsa ini 'Indonesia' banyak perbedaan di dalamnya, perbedaan suku, perbedaan tempat, perbedaan kebiasan namun semua ini tetap satu atas nama Bangsa Indonesia.
Tepat hari ini 63 tahun Indonesia merdeka, dan spesial untuk hari ini juga menggunakan Bahasa Indonesia menghormati Indonesia yang merayakan dirgahayu.
Selamat Ulang Tahun Indonesia ku.
Dirgahayu Indonesia.
Perbedaan bukan halangan untuk maju, tetap satu Bangsa Indonesia.
Disini akan saya tulis beberapa command yang mempunyai fungsi sama JunOS dan IOS
1# menampilkan daftar interface secara kolom berserta IP address
JunOS> show interfaces terse
IOS# show ip interface brief
2# menampilkan konfigurasi router
JunOS> show configuration
IOS# show running-config
3# mengambil baris yang diinginkan
JunOS> show configuration | match nnnnn
IOS# show running-config | include nnnnn
4# mengambil sekumpulan baris yang diinginkan dari awal
JunOS> show configuration | find nnnnn
IOS# show running-config | begin nnnnn
5# menampilkan routing tabel router
JunOS> show route
IOS# show ip route
6# menampilkan BGP peering
JunOS> show bgp summary
IOS# show ip bgp summary
7# menampilkan prefix yang di-advertise ke BGP peering a.a.a.a
JunOS> show route advertising-protocol bgp a.a.a.a
IOS# show ip bgp neighbor a.a.a.a advertised-routes
8# menampilkan prefix yang di-terima dar BGP peering a.a.a.a
JunOS> show route receive-protocol bgp a.a.a.a
IOS# show ip bgp neighbor a.a.a.a routes
9# menampilkan user yang sedang telnet
JunOS> show system users
IOS# who
10# menampilkan berapa lama waktu router menyala (waktu nyala)
JunOS> show system uptime
IOS# show version
11# menampilkan log router
JunOS> show log /var/log/messages
IOS# show logging
12# menampilkan cpu proses
JunOS> show system processes
IOS# show processes
Di atas terdapat perbedaan dalam penyampaian dari masing-masing sistem operasi namun maksudnya sama. Sama seperti suatu bangsa ini 'Indonesia' banyak perbedaan di dalamnya, perbedaan suku, perbedaan tempat, perbedaan kebiasan namun semua ini tetap satu atas nama Bangsa Indonesia.
Tepat hari ini 63 tahun Indonesia merdeka, dan spesial untuk hari ini juga menggunakan Bahasa Indonesia menghormati Indonesia yang merayakan dirgahayu.
Selamat Ulang Tahun Indonesia ku.
Dirgahayu Indonesia.
Perbedaan bukan halangan untuk maju, tetap satu Bangsa Indonesia.
Subscribe to:
Posts (Atom)