MTU setting - solaris 9 how to check??


 
Thread Tools Search this Thread
Operating Systems Solaris MTU setting - solaris 9 how to check??
# 1  
Old 03-17-2004
MTU setting - solaris 9 how to check??

I need to check the mtu setting on my server, I am told I need to use the ndd command and check the tcp setting tcp_mss_max

I have done so and all I can see is the below,

tcp_mss_def_ipv4 (read and write)
tcp_mss_max_ipv4 (read and write)


How can I check the actual value of the mtu setting, as far as I know the max value can be 1500 but I do not know how to check the actual value on my server, all I can see is the read and write above...

Anyone know how I can check this?
# 2  
Old 03-17-2004
hmnnn I think i found my answer;

>> netstat -I hme0

Name Mtu Net/Dest Address Ipkts Ierrs Opkts Oerrs
hme0 1500 xxx xxxxx xxxx xxx xxxx xxxx

Collis Queue
xxxx xxxxxx
# 3  
Old 03-17-2004
Also, as root, ifconfig -a
# 4  
Old 03-09-2008
Frustrated1,

the command you are typing for tcp_mss_def_ipv4 and tcp_mss_max_ipv4 appears to be this:

ndd /dev/tcp \?

this will only show you the available parameters for /dev/tcp and whether or not they are read only or read/write. The commands you may want to use are:

ndd /dev/tcp tcp_mss_def_ipv4
ndd /dev/tcp tcp_mss_max_ipv4

You do not need to use the -get after ndd. If the kernel does not see -set, it assumes you want to get the settings value, not change it.
# 5  
Old 03-09-2008
Also, if you are using Ethernet, the typical MTU will be 1500. An instance where you would see a different MTU value would be for the loopback interface (lo0), and modem connections. IIRC, those are typically 296. One final note...if you use ndd to change a setting in one of the modules in the TCP/IP stack and suddenly find you cannot communicate at all, reboot the host. This will return the settings to their original configuration. ndd is only in effect as long as the box is up and running.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Set MTU value for ipv6 interfaces

Hi, I am trying to set mtu value for ipv6 interfaces. I know how to set it for ipv4 interfaces ifconfig net1 mtu 1240 Do I need to add any iptype for the above command ? Note: OS:Solaris 10 TIA (3 Replies)
Discussion started by: Sumanthsv
3 Replies

2. UNIX for Dummies Questions & Answers

MTU setting for IRIX

Couldn't find an IRIX forum, so I'm posting to this one... Just had our SAs rebuild an IRIX machine and now I need to set the MTU to 1344 (vice 1500 default). I can set it manually using the ifconfig command, but it won't survive a reboot. I made an entry into the /etc/init.d/ifconfig-1.options... (0 Replies)
Discussion started by: scottwevans
0 Replies

3. IP Networking

IPV6 very slow, not respecting MTU??

Hi, Curious problem with IPV6. Situation is wget request from squid proxy via intermediate router. With IPV4 (wget -4) speed is ~100MB/sec. With IPV6 (wget -6) it drops to 30KB/sec. Examining the traffic with tcpdump shows that the squid box is regularly sending out over-sized packets (>MTU)... (5 Replies)
Discussion started by: jusme
5 Replies

4. IP Networking

Packet Length greater than MTU

Hello, I would appreciate some help with the following. We have 3 SUN X4450 servers, each of these servers talk to each other, one is an application server the other is a database server and the third is a web server. We also have numerous workstation and ACD connections. When I snoop the... (1 Reply)
Discussion started by: giles.cardew
1 Replies

5. HP-UX

MTU size

Hi, Just want to ask on how to check and change the MTU size of the nodes from 1500 to 9000? I need to match the MTU size of some cluster nodes which has 1500 to the others with 9000 because they are inconsistent. Thanks (1 Reply)
Discussion started by: criphaze22
1 Replies

6. UNIX for Advanced & Expert Users

check remote switch port speed setting

Hi, Someone told me how to check the remote switch port's speed setting on the other end of the cable, from linux. I forgot it. Anyone knows? I checked dmesg, ethtool (haven't checked this out thoroughly) , no luck. thanks, Marc (1 Reply)
Discussion started by: marcpascual
1 Replies

7. Shell Programming and Scripting

sftp - permission setting check

Hello, I am doing a transfer of a file from one HP-UX ( umask : 033 ) server to another HP-UX server ( umask : 033 ) and file got transferred sucessfully. However I could see the file permission gets changed at the receiving end. Would like to know the reason for that? Details below: ... (3 Replies)
Discussion started by: jansat
3 Replies

8. Solaris

how to find MTU size on solaris.

How do i find the MTU size on solaris, which file to look into. Please help I'm a newbie to administration. (1 Reply)
Discussion started by: ramky79
1 Replies

9. Solaris

MTU Value

Hi guys, Do anyone know how to change the MTU value on an interface on Solaris 10 server? (2 Replies)
Discussion started by: shabu
2 Replies

10. Solaris

Check Duplex setting of intrerface card ?

Hi there, On solaris 8, hat is the command to show the duplex and speed of the attached network cards ?? Alos , if its not what I want ....what command can i use to reconfigure it cheers (5 Replies)
Discussion started by: hcclnoodles
5 Replies
Login or Register to Ask a Question