Think innovative

Posts made in October, 2013

How to upgrade your Cisco iOS Switch

By on Oct 27, 2013 in Cisco | 0 comments

  1. check current version switch# show boot 2. show free space switch# dir flash: 3. compare the size with the update image 4.(this step is optional) delete old files on the switch switch# delete /f /r flash:[PATH]/[FILE] or switch# delete /f /r flash:[FILE] 5. load the update image via tfpt (Im using Solarwinds TFTP Server for this purpose) for *.bin files: switch# tftp://[IP]/[PATH]/[UPDATEFILE] flash: for *.tar files : switch# archive tar /xtract tftp://[IP]/[PATH]/[UPDATEFILE] flash: 6. verify the integrity (this step is optional) switch# verify /md5 flash1:[UPDATEFILE] 7. change the boot path switch# conf t switch(config)# boot system flash:/[UPDATEFILE] switch#show boot (zur Kontrolle) 8. save the config and reboot the switch switch# wr mem switch#...

Read More

RSA Authentification Manager 7.1 Database Server not starting

By on Oct 14, 2013 in RSA | 8 comments

You are receiving this error from your RSA Server:   com.rsa.common.UnexpectedDataStoreException: com.rsa.ims.security.keymanager.sys.SystemModificationThresholdException: System was modified beyond the allowed threshold, cannot decrypt. or that one: Log Name:      System Source:        Service Control Manager Date:          14.10.2013 09:37:58 Event ID:      7034 Task Category: None Level:         Error Keywords:      Classic User:          N/A Computer:      rsa.test.com Description: The RSA Authentication Manager Database Instance service terminated unexpectedly.  It has done this 8 time(s).   Solution: Start RSA Util with the following parameters. This will reset the encrypted file store C:\Program Files\RSA Security\RSA Authentication Manager\utils>rsautil manage-secrets -a recover -m yoursuperadminpasswordhere Machine fingerprint restored successfully.   RSA Version: RSA Authentification Manager 7.1 SP4 Please leave a comment, if this saved you some time...

Read More

Port Channeling Configuration on Cisco iOS Switches

By on Oct 2, 2013 in Cisco |

Configuration example for Port Channeling with LACP We will be using the following ports for configuration Gi1/0/14 & Gi1/0/15 #create a channelgroup: conf t interface Port-channel14 description ***Portchannel Fileserver 1/0/14 – 15*** switchport access vlan 18 switchport mode access spanning-tree portfast spanning-tree bpduguard enable #assign port to channel group conf t interface GigabitEthernet1/0/14 description Fileserveruplink 1 switchport access vlan 18 switchport mode access spanning-tree portfast spanning-tree bpduguard enable channel-group 15 mode active   conf t interface GigabitEthernet1/0/15 description Fileserveruplink 2 switchport access vlan 18 switchport mode access spanning-tree portfast spanning-tree bpduguard enable channel-group 15 mode...

Read More