Author Archives: fsormok

Switch SRW2008

Homepage For more information go to http://www.linksys.com Console Connection screen /dev/tty.KeySerial1 38400 Default Password Username: admin Password: <blank>

Posted in Hardware | Tagged | Leave a comment

Packeteer Survival Guide

Packeteer Hardware 1550-er: bis 2 Mbps, 256 Classes, 128 Partitions, 5’000 TCP Flows Tunnels: 10 Compression: 2 Mbps 1 I/F Pair 2500-er: bis 10 Mbps, 512 Classes, 256 Partitions 5’000 TCP Flows (128 kbps – 6 Mbps link), 20’000 TCP … Continue reading

Posted in Uncategorized | Tagged | Leave a comment

SPLAT Netzwerk Einstellungen

Folgendermassen können Sie bei SPLAT die Geschwindigkeitseinstellungen der Netzwerkkarte vornehmen: Ethtool Abfragen: ethool eth0 oder mii-tool -v Setzen: ethtool -s eth0 speed 100 duplex full autoneg off Modules.conf vi /etc/modules.conf Für Intel: options e1000.4.6.11 Duplex=2,2,2,2 Speed=100,100,100,100 Für Broadcom: options bcm5700 … Continue reading

Posted in Uncategorized | Leave a comment

Validate IP

#!/bin/bash # What a nice pice of shell-programing… thx to Chris F.A. Johnson @ comp.unix.shell is_ip() { case “$*” in “”|*[!0-9.]*|*[!0-9]) return 1 ;; esac local IFS=. set — $* [ $# -eq 4 ] && [ ${1:-666} -le 255 ] … Continue reading

Posted in Bash | Leave a comment