Showing posts with label network. Show all posts
Showing posts with label network. Show all posts

Tuesday, August 18, 2009

Opensource TFTP Server: TFTPd32

Found this TFTPd32 free TFTP server recommended in one of cisco.com document:
http://www.cisco.com/en/US/partner/docs/security/ips/6.1/configuration/guide/cli/cli_system_images.html#wp1115662

- DHCP, TFTP, DNS, SNTP, Syslog
- Windows: run as a service

Official site is here:
http://tftpd32.jounin.net/

Sunday, July 19, 2009

opensolaris 2009.06: enable jumbo frame on e1000g

Edit /kernl/drv/e1000g.conf
# vi /kernel/drv/e1000g.conf

and change 'MaxFrameSize' to appropriate value.
---
MaxFrameSize=2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0;
# 0 is for normal ethernet frames.
# 1 is for upto 4k size frames.
# 2 is for upto 8k size frames.
# 3 is for upto 16k size frames.
# These are maximum frame limits, not the actual ethernet frame
# size. Your actual ethernet frame size would be determined by
# protocol stack configuration (please refer to ndd command man pages)
# For Jumbo Frame Support (9k ethernet packet)
# use 3 (upto 16k size frames)
---
The first digit represent e1000g0, second digit represent e1000g1, and so on.