- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- change MTU size permanently
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2007 06:42 PM
08-01-2007 06:42 PM
A couple of weeks ago, I modified the MTU size of my network adapters on hp-ux 11.23. I did it by stopping the APA service and then using lanadmin -M 9000 [interface_number] on every nic, then, started APA again and it worked fine. However I found out that this change was not preserved upon reboot. Therefore, I needed to use SAM or to edit the hpietherconf file in order to make it permanent. First I tried SAM, but it wasn't possible cause SAM forced me to assign an IP address to my APA NICS in order to change the MTU size. I decided to edit the etc/rc.config.d/hpietherconf file; however, the changes that I made on this file seemed to be override upon reboot.
Does anybody know the right way to edit my hpietherconf in order to enable MTU size 9000 on lan1 and lan2?
regards
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2007 06:56 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2007 08:02 AM
08-02-2007 08:02 AM
Re: change MTU size permanently
Last time I just modified the hpietherconf file and not the hpigelan.
according to this link:
http://docs.hp.com/en/AB545-90001/ch01s08.html
all i had to do is to modified the hpietherconf file, I added the following lines to modify the MTU size:
HP_IETHER_INTERFACE_NAME[1]=lan1
HP_IETHER_MTU[1]=9000
HP_IETHER_INTERFACE_NAME[2]=lan2
HP_IETHER_MTU[2]=9000
I rebooted the server, but the changes were override.
by looking at the documentation of the link, they say that the file has to be modified on the following way:
edit the following configuration file using an editor such as 'vi':
/etc/rc.config.d/hpietherconf.
Set the mtusize by editing HP_IETHER_MTU[i]=mtusize,
and insert the proper interface name: HP_IETHER_MTU[i]=HP_IETHER_INTERFACE_NAME.
however, I dont think that this is correct... am I wrong?
cause if it were the case, I would have had to modified my file with something like this:
HP_IETHER_MTU[1]=9000
HP_IETHER_MTU[1]=lan1
HP_IETHER_MTU[2]=9000
HP_IETHER_MTU[2]=lan2
does this make any sense?
I will try to modify the hpigelan as you said to see if it works.
thanks for your help.
regards,
Mynor Aguilar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2007 06:30 PM
08-02-2007 06:30 PM
Re: change MTU size permanently
do a
$ ioscan -fnkClan
to see the drivertype(s) of your interfaces, column "Driver".
rgds
HGH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2007 06:23 AM
08-03-2007 06:23 AM
Re: change MTU size permanently
lan 0 -> iether
lan 1 -> iether
lan 2 -> igelan
lan 3 -> igelan
I haven't noticed that the device driver were different, I just modified hpietherconf, but since I wanted to modified lan 1 and lan 2 I had to modify hpietherconf (for lan1) and hpigelanconf (for lan2) files.