IP Stories

“A Written IP Related Activities”

Archive for September, 2008

[Cisco] Auto Archive Configuration – Save Cisco Config Periodically

Posted by a. Rahman Isnaini r. Sutan on September 16, 2008

Tired of saving your cisco configuration manually ?
And changes made very often & too lazy to back up.
This how to save your configuration automatically & periodically.
– Below sample save in weekly period.
– And save configuration weekly to disk2 of my Core Router.

But firstly check your IOS support or not (12.4 for e.g).
Here how to check :

Your-ROUTER(config)#archive

How to configure :

Core-1(config)#archive
Core-1(config-archive)#path disk2:config-backup
Core-1(config-archive)#time-period 604800
Core-1#dir disk2: (sample)
5  -rw-        3276  Sep 12 2008 10:14:02 +07:00  config-backup

Other options at archive level :

default              Set a command to its defaults
exit                  Exit from archive configuration mode
log                   Logging commands
maximum        Maximum number of backup copies
no                    Negate a command or set its defaults
path                 Path for backups
rollback           Rollback parameters
time-period     Period of time in minutes to automatically archive the running-config
write-memory  Enable automatic backup generation during write memory

a. rahman isnaini r.sutan

Posted in Cisco | Leave a Comment »

[Media Player] K-Lite Mega Codec Video Renderer & Subtitle Error

Posted by a. Rahman Isnaini r. Sutan on September 15, 2008

K-Lite Codec as one of most compatible video player that support many codecs compared to others media player.

First installation by default Video Renderer is set to Old Renderer which not allow you to load the subtitle correctly.
Here how to overcom this :

Change Playback output of Direct Show Video in View > Option tab setting.

a. rahman isnaini r.sutan

Posted in software | 2 Comments »

[Mobile Internet] Like Telkomsel Flash, INDOSAT launched “ISAT Eco”

Posted by a. Rahman Isnaini r. Sutan on September 10, 2008

Since 1.5 GB Volume Based I’ve subscribed limited for 3 months “low rate” promotion.
And as well justifying 1.5 GB is pretty much againts my requirement.
Choosing INDOSAT Eco should fits what I need (POP3, SSH, Telnet, bit browsing).

-
ISAT Eco is Unlimited Product with speed of 256 Kbps till 2GB of volume achieved.
Exceeding this defined quota the speed will be adjusted to 64 kbps.
Not bad, 2 GB still pretty much quota I need to spent :) .

Now I don’t have to worry for quota over limit & pay for that over usage.
Though I believed, I even couldn’t spent this 2GB in a month :)
All I need to pay is Rp. 100.000 or with Tax will be Rp 110.000 (USD 110).

The Experience…
Even sometimes my bandwidth meter shows that it’s not really 256 kbps strictly allocated but burst a bit higher.

This just my test this morning [Sept, 15] I believe BTS-BSC-MSC in idle capacity :) due to everybody in a meeting or meet they boss for reports.

a. rahman isnaini r.sutan

Posted in Mobile | 11 Comments »

[IPv6] Mikrotik Hotspot Not Working – IPv6 Installed on NIC

Posted by a. Rahman Isnaini r. Sutan on September 1, 2008

Till now I don’t have a good solution for running IPv6 simultanously with Mikrotik Wireless Hotspot.
The condition :

- Your LAN has a dual stack IPv6 / IPv4 installed
- You have to connect to Mikrotik Hotspot Gateway Enabled
- Your first access is browsing and will be redirected to Mikrotik Login Page

The Issue :

No matter you LAN NIC UP/DOWN or we can say connected or not..
With IPv6/IPv4 Dual stack installed, Your Wifi status is Connected but You have error page “Address Not Found” while trying to browse to log in.

What I have done :

Uninstalling IPv6 on Your NIC will help much.
The redirected login page, will be nicely appear waiting for your to enter username & password :)
It’s not happened on my another wifi network.

a. rahman isnaini r.sutan

Posted in IPv6, Mikrotik, wireless | 2 Comments »

[Cisco-Juniper] SSH from Cisco Router to Juniper OS

Posted by a. Rahman Isnaini r. Sutan on September 1, 2008

Spending my time…
Trying to limit login from certain hosts include Cisco routers (OS Version Image : c7200-jk9o3s-mz.123-13.bin”) on a Juniper. The connection allowed is ssh.

Allowing cisco routers doesn’t seem to give a remote login successfully connected.

Cisco#ssh -l boss 192.168.1.145 [connection error:0]

Got this SSH log error on Juniper show log message tailed :

Sep  1 10:21:47  JunOS-GW sshd[38925]: Did not receive identification string from 192.168.1.146
Sep  1 10:21:47  JunOS-GW inetd[2541]: /usr/sbin/sshd[38925]: exit status 0xff00
Sep  1 10:22:15  JunOS-GW sshd[38926]: Did not receive identification string from 192.168.1.146
Sep  1 10:22:15  JunOS-GW inetd[2541]: /usr/sbin/sshd[38926]: exit status 0xff00
Sep  1 10:22:18  JunOS-GW sshd[38927]: Did not receive identification string from 192.168.1.146
Sep  1 10:22:18  JunOS-GW inetd[2541]: /usr/sbin/sshd[38927]: exit status 0xff00
Sep  1 10:22:23  JunOS-GW sshd[38928]: Did not receive identification string from 192.168.1.146
Sep  1 10:22:23  JunOS-GW inetd[2541]: /usr/sbin/sshd[38928]: exit status 0xff00
Sep  1 10:35:52  JunOS-GW sshd[39135]: Did not receive identification string from 192.168.1.146
Sep  1 10:35:52  JunOS-GW inetd[2541]: /usr/sbin/sshd[39135]: exit status 0xff00
Sep  1 10:36:03  JunOS-GW sshd[39136]: Did not receive identification string from 192.168.1.146
Sep  1 10:36:03  JunOS-GW inetd[2541]: /usr/sbin/sshd[39136]: exit status 0xff00
Sep  1 10:36:04  JunOS-GW sshd[39137]: Did not receive identification string from 192.168.1.146
Sep  1 10:36:04  JunOS-GW inetd[2541]: /usr/sbin/sshd[39137]: exit status 0xff00
Sep  1 10:36:05  JunOS-GW sshd[39138]: Did not receive identification string from 192.168.1.146
Sep  1 10:36:05  JunOS-GW inetd[2541]: /usr/sbin/sshd[39138]: exit status 0xff00

The symptom : Your outbound SSH on Cisco Router is version 1, while your juniper by default is version 2. Please add/enable ssh protocol-version 2 (v2) as well.. on your Juniper.

You@JunOS-GW# show
ssh {
root-login deny;
protocol-version [ v2 v1 ];
connection-limit 10;
}

[edit system services]

you@JunOS#set system services ssh protocol-version v1
you@JunOS#set system services ssh protocol-version v2
you@JunOS#set system services ssh protocol-version v1 v2
(nope sure this one :) ) try it)

Then commit ! [Thanks to Ang Kah from Bangky.Net for Inspiring]

a. rahman isnaini r.sutan

Posted in Juniper, security | Leave a Comment »