Think innovative

Posts by Joey Kappe

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

Change Mac address on Mac OSX

By on Jul 7, 2013 in Mac OSX | 0 comments

With those commands I was able to get more than the 30 minutes free internet in the hotel. Mac address based authentication, haha 😀 This is also great to fool the mac address filter on your router if enabled. Have fun.   sudo ifconfig en1 down sudo ifconfig en1 lladdr AA:BB:CC:11:22:33 sudo ifconfig en1...

Read More

Restart networking services on Mac OSX

By on Jul 7, 2013 in Mac OSX | 1 comment

There is no /etc/init.d/networking at Mac OSX like in Ubuntu. sudo ifconfig en0 down sudo ifconfig en0 up Disabling and enabling the network interface will do the job. If you have to do it via SSH use this command: sudo ifconfig en0 down;sleep 1;sudo ifconfig en0 up...

Read More

Windows Server 2008 R2: Activate Windows Search Service

By on Jul 1, 2013 in Windows Server 2008 | 0 comments

Windows Search is in default disabled on windows server. It only makes sense to install Windows Search on a server, if the server is a terminalserver with a lot of users, to improve the ease of operation.   – Install the role fileserver on your Windows Server 2008 R2 machine. – In the installation wizard check “Windows Search” – Let the installer finish, choose the harddisks you want to index. – Check if the service is...

Read More