Netsh store=persistent resets on reboot

I am running Windows 7 with a WiFi connection to my router, and I'm connecting a Raspberry Pi via an Ethernet cable. Network sharing is turned on, and to some extent this setup works. I can ping any location (e.g. bing.com) from the Pi. I can open a web
browser on the Pi to google.com. 
However, the web brower won't connect to most sites, most of the time. I set up a packet sniffer on the PC and found that in each case that's because the PC is receiving packets of 1500 bytes, and does not pass them on to the PI over the Ethernet cable.
It sends back an ICMP Packet Undeliverable (Packet too large) message in each case. The message is sent by the PC, not by the Pi via the PC.
I ran 
netsh interface ipv4 show subinterfaces
and found that the Ethernet interface is set to MTU size 1300, while the WiFi interface is set to 1500. So I ran
netsh interface ipv4 set subinterface "Local Area Connection" mtu=1500 store=persistent
which corrected the problem.
However, when I restarted the PC, the MTU size had reset back to 1300. From reading the documentation about the netsh command, that's not supposed to happen. I
have to assume that something else is resetting the size on reboot, but I haven't been able to track down the culprit. I also have not found any way to prevent the size from being changed, by, e.g. setting an access control on the key value. (For that I'd
have to know where to find the key value.)
The Ethernet NIC is a REALTEK PCIe FE Family Controller, and I've updated the driver to the latest on the Realtek site.
I've noticed that others have asked about store=persistent settings getting lost on reboot, as far back as 2010. I'm hoping that this question might finally get answered.

Nope, no jumbo frames. I checked again and again because so many people were saying it was there.
I did manage to fix the issue by editing the registry. Apparently the netsh command doesn't update the registry (I actually searched for any occurrences of 1500 to see if it did), and on reboot the values stored in the registry are recopied out to wherever
they are kept for the running system.
I found instructions for locating the correct place in the registry here:
cbfive.com/blog/post/How-to-Find-a-Network-Adapter-in-the-Registry.aspx
Once I followed those instructions I updated the value stored for MTU size, and after that the PC remembered the setting over a restart.
I don't know what might happen if I re-installed the NIC's driver. Likely it would reset the MTU size to 1300, and I'd have to re-edit the registry.
Just what the store=persistent parameter actually does is a bit unclear at this point (maybe it works for some settings but not for this one, or it doesn't work for this NIC, but it would work for other NICs), but since I got things working I'll let that
be someone else's mystery. ^_^

Similar Messages

  • My 4th Gen iPod Touch won't open up the apps I've downloaded. I've tried uninstalling and then reinstalling the app and it seems to only be a temporary fix. The reset and reboot didn't work either. Help would be appreciated.

    My 4th Gen iPod Touch won't open up the apps I've downloaded. I've tried uninstalling and then reinstalling the app and it seems to only be a temporary fix. The reset and reboot didn't work either. Help would be appreciated.
    In more specific terms. The apps that came on the iPod like the weather and maps and whatnot have been working flawlessly. It's just when I download an app and then disconnect from wifi it's almost like I'm on a timer until the app stops working. It acts like it wants to open, the screen flashes black then resets to the home pages. I've tried all of the basic fixes, rebooting, reseting, uninstalling then reinstalling. But like in my...long...question, the reinstalling option only seems to be a temporary fix. I just recently downloaded the 5.1.1 udate (I think that's what it was) does that have anything to do with it, or am I just derpy when it comes to iPods?

    Try the other suggestions here:
    iOS: Troubleshooting applications purchased from the App Store
    Then try a restore.

  • HT1386 Just downloaded 7.2 into my Iphone 5 what a mess.  Dropped called no audible notifications for email or text messages.  Went to the apple store and reset phone to original specs. Now trying to restore apps and music and itunes will not recognize th

    Just downloaded 7.2 into my Iphone 5 what a mess.  Dropped called no audible notifications for email or text messages.  Went to the apple store and reset phone to original specs. Now trying to restore apps and music and itunes will not recognize the phone.  I have gone thur the steps for windows 7 and still nothing???  I have downloaded the newest version I itunes too. 

    Hi Midwestboy,
    If your iPhone isn't being recognized by iTunes on your Windows machine, you may find the following article helpful:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Regards,
    - Brenden

  • At Apple Store we reset my Iphone 4s to factory settings in an unsuccessful bit to fix my Wi-fi problem.  Now I'm home trying to get my contacts, pics, etc. back.  I'm lost...

    At Apple Store we reset my Iphone 4s to factory settings in an unsuccessful bit to fix my Wi-fi problem.  Now I'm home trying to get my contacts, pics, etc. back.  I'm lost...

    Okay - see if the instructions here help: http://support.apple.com/kb/ph12521
    ~Lyssa

  • What else does "netsh int ip reset" do?

    According to
    this article when you run the "netsh int ip reset" command, all it does is to reset the content of two registry keys:
    SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\
    SYSTEM\CurrentControlSet\Services\DHCP\Parameters\
    but on my test system it appears to do more.
    On a Windows Server 2012 R2 x64 machine, after my application does something wrong, if I try to set up a static IP to a network interface I get instant BSOD.To fix the issue I have to run "netsh int ip reset" and then I can set a static IP.
    Now, I'm trying to figure it out how does "netsh int ip reset" fix the problem.I know is not the content of those 2 registry keys because I did the following
    on my virtual machine:
    Make a VM backup when the system is troubled.
    Launch the VM and run the "netsh int ip reset" command
    Export the two registry keys
    Roll back to the backup made before the "netsh int ip reset" command
    Import the saved registries keys
    Set up a static IP on an network interface, but I still get a BSOD
    When my application tries to configure a network interface with an IP address that was already used by another network interface in the past, first it has to remove that IP configuration for the non-present device and then it can use that IP.
    To do that I search in every registry in SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces and see if any of the interfaces did use the IP addres I want to use by comparing the value in "IPAddress" property with the one I want to use.
     If I find a match, I first check if that interface is live, and if it's not, I delete the value in "IPAddress" property and set property "EnableDHCP" to 1, then I use that IP on my interface.
    This is what my application did wrong. When this interface comes back live again, it will get an IP configuration through DHCP, but it will BSOD if you try to set a static IP on it.
    The correct way to do it is to set "IPAddress" property to "0.0.0.0" and "EnableDHCP" to 1. If you leave "IPAddress" empty and set "EnableDHCP" to 1, something goes wrong in TCPIP configuration, that "netsh
    int ip reset" will fix .. but what exactly it fixes, I have no idea. All I know it's that it's not in the two registries keys that the
    KB article mentions.
    So what else does "netsh int ip reset" do, except resetting the content of those two registries, that fixes the problem on my test system?

    Hi,
    The analysis result is :
    * Bugcheck Analysis *
    IRQL_NOT_LESS_OR_EQUAL (a)
    An attempt was made to access a pageable (or completely invalid) address at an
    interrupt request level (IRQL) that is too high. This is usually
    caused by drivers using improper addresses.
    If a kernel debugger is available get the stack backtrace.
    Arguments:
    Arg1: 00000000000000a8, memory referenced
    Arg2: 0000000000000006, IRQL
    Arg3: 0000000000000001, bitfield :
    bit 0 : value 0 = read operation, 1 = write operation
    bit 3 : value 0 = not an execute operation, 1 = execute operation (only on chips which support this level of status)
    Arg4: fffff8000298636f, address which referenced memory
    Debugging Details:
    WRITE_ADDRESS: GetPointerFromAddress: unable to read from fffff80002b090e8
    GetUlongFromAddress: unable to read from fffff80002b09198
    00000000000000a8 Nonpaged pool
    CURRENT_IRQL: 6
    FAULTING_IP:
    nt!PsChargeProcessCpuCycles+10f
    fffff800`0298636f 4c296628 sub qword ptr [rsi+28h],r12
    DEFAULT_BUCKET_ID: WIN7_DRIVER_FAULT
    BUGCHECK_STR: 0xA
    ANALYSIS_VERSION: 6.3.9600.16384 (debuggers(dbg).130821-1623) amd64fre
    TRAP_FRAME: fffff8800584b190 -- (.trap 0xfffff8800584b190)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=0000000000000001 rbx=0000000000000000 rcx=0000000000000006
    rdx=0000000000000022 rsi=0000000000000000 rdi=0000000000000000
    rip=fffff8000298636f rsp=fffff8800584b320 rbp=fffff80002a4ae80
    r8=0000000000000029 r9=0000000000000000 r10=0000000000000000
    r11=fffffa800f13518c r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0 nv up di pl nz na pe nc
    nt!PsChargeProcessCpuCycles+0x10f:
    fffff800`0298636f 4c296628 sub qword ptr [rsi+28h],r12 ds:00000000`00000028=????????????????
    Resetting default scope
    LAST_CONTROL_TRANSFER: from fffff800028d7be9 to fffff800028d8640
    STACK_TEXT:
    fffff880`0584b048 fffff800`028d7be9 : 00000000`0000000a 00000000`000000a8 00000000`00000006 00000000`00000001 : nt!KeBugCheckEx
    fffff880`0584b050 fffff800`028d6860 : fffff8a0`0391c0ac 00000000`00000000 00000000`00000000 00000000`00000002 : nt!KiBugCheckDispatch+0x69
    fffff880`0584b190 fffff800`0298636f : fffff8a0`02007f20 00000000`00000000 00000000`00000000 fffff800`00000000 : nt!KiPageFault+0x260
    fffff880`0584b320 fffff800`028d403a : 00000000`00000000 fffff880`0584b3e0 fffffa80`0dd1ff00 fffff800`02a031de : nt!PsChargeProcessCpuCycles+0x10f
    fffff880`0584b360 fffff880`04b7a02e : fffff880`04b792fc 00000000`00000000 00000000`00000022 fffffa80`0e355e50 : nt!KiChainedDispatch+0x10a
    fffff880`0584b4f8 fffff880`04b792fc : 00000000`00000000 00000000`00000022 fffffa80`0e355e50 fffffa80`0f066840 : 0xfffff880`04b7a02e
    fffff880`0584b500 00000000`00000000 : 00000000`00000022 fffffa80`0e355e50 fffffa80`0f066840 fffff880`0584b540 : 0xfffff880`04b792fc
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    nt!PsChargeProcessCpuCycles+10f
    fffff800`0298636f 4c296628 sub qword ptr [rsi+28h],r12
    SYMBOL_STACK_INDEX: 3
    SYMBOL_NAME: nt!PsChargeProcessCpuCycles+10f
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: nt
    IMAGE_NAME: ntkrnlmp.exe
    DEBUG_FLR_IMAGE_TIMESTAMP: 4ce7951a
    IMAGE_VERSION: 6.1.7601.17514
    FAILURE_BUCKET_ID: X64_0xA_nt!PsChargeProcessCpuCycles+10f
    BUCKET_ID: X64_0xA_nt!PsChargeProcessCpuCycles+10f
    ANALYSIS_SOURCE: KM
    FAILURE_ID_HASH_STRING: km:x64_0xa_nt!pschargeprocesscpucycles+10f
    FAILURE_ID_HASH: {8eeeeb21-a639-8c21-c8a3-9a37cf39b50b}
    Followup: MachineOwner
    For the bugcheck, please refer to the article to troublshoot the issue.
    Bug Check 0xA: IRQL_NOT_LESS_OR_EQUAL
    http://msdn.microsoft.com/en-us/library/windows/hardware/ff560129%28v=vs.85%29.aspx
    Hope this helps,
    Ada Liu
    TechNet Community Support

  • HT1695 I have the 1st generation iPad.  All of a sudden it will not connect to my wi-fi.  It finds my wi-fi, but will not totally connect.  I have done everything...reset network, rebooted router etc and it still will not connect.  Any suggestions?

    I have the 1st generation iPad.  All of a sudden it will not connect to my wi-fi.  It finds my wi-fi, but will not totally connect.  I have done everything...reset network, rebooted router etc and it still will not connect.  My other divices are connected....iPhone and 3 Macs.  Any suggestions?

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    iOS 6 Wifi Problems/Fixes
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • I Want To Change My ITunes Account from US Store to saudi store and reset I Want to rest my balance

    I Want To Change My ITunes Account from US Store to saudi store and reset I Want to rest my balance.

    Contact itunes support and ask them to remove your balance.

  • Toshiba Virtual Store Account Reset - 24479

    Hi All,
    I have got same problem like many others before. After updating virtual store just white screen shows up. I did not find the solution so can u do a virtual store account reset - 24479 for me, please.
    Thanx much.
    Best regards
    Achron

    Thank you for the request.
    Your Toshiba Virtual Store account 24479 has been reset.

  • Virtual Store account reset - account 28545

    Hello, please make my Toshiba Virtual Store account. need a personal account accound reset for 28545 After updating to E_1.1.00 but I get only a blank white screen. or the imprint 70.jt1.c Trick or tippp etc.

    Registered: 04/06/12
    Re: Virtual Store account reset - account 32555
    Posted: 09-Aug-2012 15:45 in response to: meriox_1
    Reply
    Hi,
    I think it will be done soon. I had the same problem.
    But you can try your account in the meantime. Maybe you are lucky and it already works without a reset
    Take a look here:
    http://www.toshibatouch.eu/journe_touch_wince/faqs.php
    Q: I forget my Toshiba Virtual Store account. How can I recover it?
    A: You can recover your Toshiba Virtual Store account details by making a private request to administrator from support forum on www.toshibatouch.eu. In your request, you need to provide your user identifier for your account. You can find it in the Toshiba Virtual Store login dialog. Toshiba customer support will reply your request privatly in the same forum thread, supplying you your account information.

  • Virtual Store account reset - account 31187

    Hello, please make my Toshiba Virtual Store account. need a personal account accound reset for 31187 After updating to E_1.1.00 but I get only a blank white screen. or the imprint 70.jt1.c Trick or tippp etc.

    Registered: 04/06/12
    Re: Virtual Store account reset - account 32555
    Posted: 09-Aug-2012 15:45 in response to: meriox_1
    Reply
    Hi,
    I think it will be done soon. I had the same problem.
    But you can try your account in the meantime. Maybe you are lucky and it already works without a reset
    Take a look here:
    http://www.toshibatouch.eu/journe_touch_wince/faqs.php
    Q: I forget my Toshiba Virtual Store account. How can I recover it?
    A: You can recover your Toshiba Virtual Store account details by making a private request to administrator from support forum on www.toshibatouch.eu. In your request, you need to provide your user identifier for your account. You can find it in the Toshiba Virtual Store login dialog. Toshiba customer support will reply your request privatly in the same forum thread, supplying you your account information.

  • Toshiba Virtual Store Account reset - 726

    I've an journe touch, I've downloaded and succesfully installed new firmware but now virtualstore is no longer working. Can you please reset my account. Hoping this will help to solve the problem. After reset I can receve a confirm on the email connected to this account? Can I use this account to connect the virtual store after reset.
    Thanks.

    Thank you for the request.
    Your Toshiba Virtual Store account 726 has been reset.

  • Toshiba Virtual Store Account Reset - 34092

    I am using a Toshiba Journal.E Touch, model pX1530U-1ET1
    I have just updated the firmware as indicated in this link http://aps2.toshiba-tro.de/kb0/OPT0502VS0000R01.htm
    Access to Toshiba Virtual Store - black screen appears
    Toshiba Virtual Store Account
    Reset - 34092

    Thank you for the request.
    Your Toshiba Virtual Store account 34092 has been reset.

  • Toshiba Virtual Store Account Reset - 26218 & 33876

    I've got to Journ.E Touch so could you reset both accounts?
    Toshiba Virtul Store Account Reset - 26218
    Toshiba Virtul Store Account Reset - 33876

    Thank you for the request.
    Your Toshiba Virtual Store account 26218 and 33876 has been reset.

  • Screen flickers with safari version 8.0.2. I'm running Yosemite 10.10.1. Reseted safari, rebooted, etc. Nothing works. Ideas?

    Screen flickers with safari version 8.0.2. I'm running Yosemite 10.10.1. Reseted safari, rebooted, etc. Nothing works.
    Ideas on how to fix?
    The flickering doesn't always happen but does come back after some time of use.

    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.

  • TS1410 By mistake I disconnected my iPod Classic when it said Do not disconnect. Now it doesn't appear in iTunes, but it does appear on my desktop. How can I get to reappear in iTunes (have tried resetting and rebooting).

    By mistake I disconnected my iPod (5th generation) when it said Do not disconnect. Now it doesn't appear in iTunes, but it does appear on my desktop. How can I get to reappear in iTunes? I have tried resetting and rebooting. And my iTunes is up to date on my macbook pro, mountain lion, OS X 10.8.
    Thank you!

    The iPod's filesystem may be corrupted.  This may seem like overkill, but it has been known to help many others in the same boat.  Try doing a low level reformat of the iPod's hard disk using the instructions in this article.
    http://www.methodshop.com/gadgets/ipodsupport/erase/
    B-rock

Maybe you are looking for

  • Bug : Invalid file extension error when opening exported excel

    Hi All, In one of my jsff page, i have implemented 'exportToExcel' functionality through a exportcollectionactionlistener on a table to export its data to excel. When i try opening the generated excel, i get the following warning in excel 2007 : "The

  • No Sound in Project with Imported MPEG 4

    I am new to iDVD. My first project is to just make a video from a short MPEG 4 movie clip. I imported the movie into iDVD and dropped it in. It plays fine except there is NO sound. When I press the select button in the on screen remote it plays the c

  • Reset recon account payable and receivable

    Hi expert in transaction FSS0 : an account 140000 for example is set as a recon account : the need is to reset it to non recon account. thanks

  • Oracle E-BS 11.5.10.2 didn't work after copy from RHEL 4.4 to RHEL 5.3

    Hi, Source: Oracle database server : 10.2.0.3 APPLICATION =11.5.10.2 RHEL =4.4 Target: Oracle database server : 10.2.0.3 APPLICATION =11.5.10.2 RHEL =5.3 I just copied filles from source to destination. Has someone did similar way? If yes was any iss

  • 1.6.2 and Internet DVR Control

    Since 1.6.2 I have frequently experienced a situation where I am unable to delete more than one DVR recording per 'login' from the Internet. You delete the recording, it says it did it, and when you try to delete the next recording, it says, please w