How to save router settings?

Hey,
 Can anybody tell me how or if I can save off my D-Link (DIR-628) router settings?
I have to format my hard drive and I remember how much of a pain it was to set it up.
Thanks!
Jack

Perhaps you should ask in a D-Link forum...you understand this is a Linksys support forum, and the two brands ane made by different manufacturers, right.....?
Tomato 1.25vpn3.4 (SgtPepperKSU MOD) on a Buffalo WHR-HP-G54
D-Link DSM-320 (Wired)
Wii (Wireless) - PS3 (Wired), PSP (Wireless) - XBox360 (Wired)
SonyBDP-S360 (Wired)
Linksys NSLU2 Firmware Unslung 6.10 Beta unslung to a 2Gb thumb, w/1 Maxtor OneTouch III 200Gb
IOmega StorCenter ix2 1TB NAS
Linksys WVC54G w/FW V2.12EU
and assorted wired and wireless PCs and laptops

Similar Messages

  • How to save slideshow settings so when I press Ctrl-Enter it does what I want?

    How to save slideshow settings so when I press Ctrl-Enter it does what I want?
    eh?
    R

    I tested what you gave me there Rob. On my Mac I have dual monitors:
    -Only blackens/show slideshow on one monitor (the main monitor, if I move LR to my secondary monitory, the slideshow is still on the first, but the second still runs normal, with LR just sitting there).
    -If I disable slide durration I have to manually advance the slides with the right arrow.
    -I don't have "Lightroom" (or with my current settings any) text on the screen.
    -Does not repeat.
    My Windows machine doesn't have dual monitors, but the others work correctly....
    That is, until I thought about this differently. Since we are looking at changing Slideshow settings, I was naturally in the Slideshow module. But then I remembered the whole point of the Impromtu Slideshow was that you can view slideshow playback from any module. Once I returned to Library and clicked Command/Ctrl+Enter, then I saw exactly what you are talking about. Both monitors are blackened, slide duration is ignored, etc.
    You know why? Because the Impromptu Slideshow uses one of the templates when outside of the Slideshow Module. Which one? Well, Default +, of course. How do you change that? Right-click (Command-click) the slideshow template you'd rather use and select "Use for Impromptu Slideshow".

  • How to save routing entries permanently after route add

    Hi guys,
    I have added routing entries through route add command. I know i can add routing entries permanently thru -p option in route add command but didin't use that option. How to save those routing entries now?
    Thanks...

    The filename you are looking for is /etc/inet/static_routes which is available only on Solaris 10 update 3 or later:
    root_sol10u3# route -p add -net 192.168.138.0/24 192.168.136.1
    root_sol10u3# cat /etc/inet/static_routes
    # File generated by route(1M) - do not edit.
    -net 192.168.128.0/22 192.168.136.1
    -net 192.168.138.0/24 192.168.136.1
    -net 172.31.68.0/24 192.168.149.253
    -net 172.31.69.0/24 192.168.149.253
    root_sol10u3#For Solaris 10 update 2 or earlier, persistent static routes are not implemented. Additionally, the old RC script method suggested above also will not work for Solaris 10 given the host isn't always guaranteed to reach the "multiuser" milestone and subsequently run the legacy /etc/rc*/S* scripts (say if a filesystem fails to mount). For those releases, you should create a new manifest file as follows:
    root_sol10u2# cat /var/svc/manifest/network/RKstatic-routes.xml
    <?xml version="1.0"?>
    <!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
    <!--
            Static Route SMF Manefest
            To be replaced by official Sun mechanism in next solaris release
    -->
    <service_bundle type='manifest' name='RKstatic-routes'>
    <service
      name='network/RKstatic-routes'
      type='service'
      version='1'>
        <create_default_instance enabled='true' />
        <single_instance/>
        <dependency name='network'
            grouping='require_any'
            restart_on='error'
            type='service'>
                <service_fmri value='svc:/network/service' />
        </dependency>
      <exec_method
        type='method'
        name='start'
        exec='/lib/svc/method/RKstatic-routes start'
        timeout_seconds='60' />
      <exec_method
        type='method'
        name='stop'
        exec='/lib/svc/method/RKstatic-routes stop'
        timeout_seconds='60' />
      <property_group name='startd' type='framework'>
        <propval name='duration' type='astring' value='transient' />
      </property_group>
      <stability value='Unstable' />
    </service>
    </service_bundle>
    root_sol10u2#Then create the method script:
    root_sol10u2# cat /lib/svc/method/RKstatic-routes
    #!/bin/sh
    # RKstatic-routes
    # To be called by the network/RKstatic-route SMF service
    ACTION=${ACTION:-add}
    setup_routes () {
    #Route to networks.
    /usr/sbin/route $ACTION net 172.1.0.0 -netmask 255.255.0.0 10.1.0.0
    /usr/sbin/route $ACTION net 172.2.0.0 -netmask 255.255.0.0 10.2.0.0
    case "$1" in
        start)
            echo "${ACTION}ing static routes"
            setup_routes
        stop)
            ACTION=delete
            echo "${ACTION}ing static routes"
            setup_routes
            echo "Usage: $0 {start|stop}"
            exit 1
    esac
    root_sol10u2#Then, import and enable/start the service:
    root_sol10u2# svccfg -v import /var/svc/manifest/network/RKstatic-routes.xml
    root_sol10u2# svcadm enable network/RKstatic-routes
    root_sol10u2# To stop:
    root_sol10u2# svcadm disable network/RKstatic-routes
    root_sol10u2# For posterity, here is a pre-Solaris 10 version:
    root_sol9# cat /etc/init.d/staticRoutes.sh
    #!/bin/sh
    case "$1" in
            start)
                    test -f /etc/routes.conf || exit 0
                    while read type route gateway
                    do
                            /usr/sbin/route add $type $route $gateway
                    done < /etc/routes.conf
            stop)
                    test -f /etc/routes.conf || exit 0
                    while read type route gateway
                    do
                            /usr/sbin/route delete $type $route $gateway
                    done < /etc/routes.conf
                    echo "Usage: /etc/init.d/routes { start | stop }"
    esac
    root_sol9# cat /etc/routes.conf
    172.1.2.0/24 172.1.2.4
    172.1.3.0/24 172.1.3.4
    root_sol9# ln -s /etc/rc2.d/S70staticRoutes /etc/init.d/staticRoutes.sh
    root_sol9#Best Regards,
    Bryan Wood

  • Need to know how to reconfigure router settings

    Hi - I was online with tech support for an hour before they told me that they couldn't help me unless I paid them or bought a new router.  Neither is an option for me financially so I hope that someone can help.  :-(
    My cable signal went out very briefly, probably for 5-10 seconds.  When it came back, my router was no longer working.  I jumped through all the reset hoops that normally work, but nothing worked this time.  The tech guy said that I needed to reconfigure my router settings.  I don't know how.  Can someone here help me?
    I  am running Windows Vista and the router is a Linksys E1000, version 2.  Is there a page on this site that tells me what to do?  I couldn't find it.
    Thank you SO much for any help that you can give me.  I'm desperate!
    Solved!
    Go to Solution.

    Hi! You have to access the setup page of the router to reconfigure the settings. This link should help you: http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=0ff4c94586a345d082828ec2161aaecf_3686.xml&pid=80&r.... Before doing the steps though, reset your router by pushing the reset button on the device for 15seconds.

  • How to save panelCollection settings?

    in ADF11G af:panelCollection can give RichTable some awsome function, like set column hidden or not , column reorder and so on. how can i save this settings to login user or browser cookie?

    Hi,
    also note that the column hide/show state is saved on the af:column not the panelCollection. The panel collection calls the RichColumn API to change the visible state
    Frank

  • How to save scanner settings?

    Hi,
    My Acrobat Pro 11.0.06 does not save scanner settings. So every time I scan, I have to select the scanner from the dropdown list and change the settings (scan front page or double sided, paper size, etc). Appreciate any help on what I should do to solve this.
    In case that's useful, my scanner is a HP Photosmart.
    I also use Acrobat at work, and it saves the last scanner setting automatically.
    Many thanks!
    Don

    Hi,
    also note that the column hide/show state is saved on the af:column not the panelCollection. The panel collection calls the RichColumn API to change the visible state
    Frank

  • Apple: How to Save Audio Settings in QTP 7 ???

    Searching through the forums here and see that I'm apparently chasing my tail here trying to save Audio settings on a QT movie that I need to boost the audio on.
    Is it true that we can't save our modified audio settings with Pro??? If so, WHAT are we supposed to do in order to be able to accomplish this? Sheesh, I would NOT have upgraded if I'd know this - removing features without notice doesn't seem to be the way to play nice. I've got to believe that this is a DEFECT that someone within Apple is aware of and is fixing.
    Someone at Apple care to comment? I see that I'm not the only one unhappy with the change.
    Please advise and I also welcome suggestions for another option out there.
    Many thanks...Bob
      Mac OS X (10.4.7)  

    If so, WHAT are we supposed to do in order to be able to accomplish this?
    I use MPEG Streamclip to adjust brightness, contrast, saturation, and/or volume settings. However, I normally do this in conjunstion with recompression to an iPod compatible format.
    I would NOT have upgraded if I'd know this - removing features without notice doesn't seem to be the way to play nice. I've got to believe that this is a DEFECT that someone within Apple is aware of and is fixing.
    Since QT 7 is supposedly based on an all new framework, possibly there was no choice in the matter for one reason or another. I agree with your frustration. Have you used Apple's QT feedback to request these features be interegrated/reintegrated in future upgrades. If enough people make their wishes known, perhaps Apple will eventually take heed.

  • Premier CS3 how to save your settings (Presets) ?

    I installed my Premier CS3 on my new PC and wanted to use some of my old PRESET setting that i have saved on my other PC...
    Ok here its :
    On my old PC i modified let's say a Trapcode plug in and saved it under PRESET , basically i chnged certain prameters within that plug in and saved it under a new name, now that i upgraded my PC and reinstalled my Premier on the new PC, is there any way i could go to my old PC and somehow save that file and use it on my new PC, so when i try to use my old preset, i get the same settings ?
    thanks !

    Ok Harm here its..
    I used the Magic Bullet's MisFire on one of my clips, but you know how you goto effect control settings and change certain parameters and then you can save it under a user PRESET, which appears on top of all effects as  Presets, ok there we go .
    so, everytime i wanna use the MisFire i goto Presets on top of effect page and use that one instead of the actual MisFire from Magic Bullet video effect section, that way i don't have to change any parameters , its already set the way i wanted to look !

  • How to save chart settings to file

    How can I easily save the whole settings of a chart (not the chart data) to a file?
    The solution should also work with an executable.
    Saving every property isn´t really handable.
    Thanks for hints

    Good morning, 2ev!
    The way to do this is with Property nodes. If you right click on the chart and select create property node, you will get a pulldown menu on the wiring diagram. Select the parameters you want (be sure to choose READ all) and then direct them to a file. A simple file generation script should be all you need to do this automatically. Look at the attached example....you will want to select your own parameters to save. Good luck!
    Eric
    Eric P. Nichols
    P.O. Box 56235
    North Pole, AK 99705
    Attachments:
    settinglogger.vi ‏26 KB

  • How to save edit settings under preferrences to use when creating or printing a PDF from word 2003 Windows PC 8.1

    I have tried to save my PDF settings after editing them, but when I go to "Print" to PDF and check the settings I keep getting Standard default settings.
    There is no Adobe PDF listed as a file heading to change conversion settings on my Word screen.
    I have tried to create a PDF by open file through the Adobe application and also by trying to print through the Word application with document open and using Adobe PDF as the printer driver.I have changed or edited the settings but they do not appear as an option to select, just the standard default settings.
    I have been able to save my setting as a Adobe PDF job options, but can't access them or use them when it comes time to convert to PDF.
    Any help would be appreciated. Thanks

    I have apprached it 3 different ways:
    - by opening acrobat and going to preferrences, clining on  convert to PDf
    - Microsoft Word, then changes each section of the edit settings, ie
    general, fonts, images, etc make the cahneges then hit OK, at this point I
    get a save as option rather than a save. It saves my changes as a PDF, but I
    am not able to access it when I go to make the PDF.
    - I also have tried to print PDF from Word  and got to properties to make
    the changs with the same results as above.
    - Then I tried yur suggestion and went to the printer in the control panel
    and had the same results.
    I am using mircosoft word 2003 which has been compatable with my windows 8.1
    I think the problem may be I am using a "trial" version of Adobe Acrotbat DC
    2105 version. It must not belettingme save the setting changes.But this
    shouldnot be if they want me to really experience the full effects of the
    program.
    I appreciate your help, thanks

  • How to save custom settings

    I was wondering if anyone knows of a software that allows you to save custom quicktime export settings so that one can easily go back and compress videos from pre-selected settings opposed to just using the 'use recent settings' option.
    I know of rooVid but it does not work for leopard.
    Please advise thanks.

    I was wondering if anyone knows of a software that allows you to save custom quicktime export settings so that one can easily go back and compress videos from pre-selected settings opposed to just using the 'use recent settings' option.
    MPEG Streamclip (free) will allow you to save named "Presets" which can be recalled/loaded as needed when using Streamclip to perform the various exports via the QT/QT component structure embedded in the current OS. (I.e., the created file is not for use by QT Pro itself.)

  • How to save trackpad settings

    upgraded to the latest yosemite and now my trackpad settings keep resetting no matter how many times i change them

    com.apple.driver.AppleBluetoothMultitouch.trackpad.plist does not exist in my preferences.
    What should I do??

  • How to save the settings (for Audigy 2

    Hi,
    Is it possible to save the setting for "EAX console", "Surround Mixer" and "Speaker Settings" and to load them fast with Audigy 2 ZS? I'm using different settings for movie watching (Bass redirection OFF, EAX effects off, CMMS surround OFF etc.) and for music listening (Bass redirection ON, EAX effects ON, CMMS surrounf ON, Graphic Equalizer ON etc.) and each time I want to change them, I have to start 3-4 applications. I remember for the good old SB Li've! 5. there were an application which allowed to remember specific settings for any started application... Is there any way to make my life easier with Audigy 2 ZS?
    Thanks in advance.

    Hi
    for display of cost in maintenance order you have to customize in IMG>PM/CS>Maintenance and service processing>Basic setting>Settings for display for cost
    Here you have to define the value categories and assign cost element to them ,and you have to define the default values value category in maintenance order
    Also you have to assign the costing variant for plan and actual cost in T code OIOF
    regards
    thyagarajan

  • How to save arp settings over a reboot

    I want to be able to set up a permanent arp route. I have worked out how to do this successfully, but the setting gets lost over a reboot.
    Some...

    I updated the firmware to V1.0.3.6 and I can not see anything when I click the advanced tab in my router control (in my web browser).
    I thought it...

  • How to save mixer settings in garageband lessons?

    Every time I open the garageband lessons I have to go to the mixer to set levels for all the tracks. With all levels at full my midi controller is far too quiet relative to the instruction and band tracks. It's frustrating that these levels get set to default every time I open the application. Any way to save them?

    Yes, there is. (You're aware that the individual Track levels have nothing to do with the recording level, only the playback)?
    You can create a template. Set up the Project the way you want it then save with whatever name you like. Then each time you record you open the template and immediately do a SaveAs for your new project.
    In fact, for '09: http://www.bulletsandbones.com/GB/FAQPages/AddTemplates09.html

Maybe you are looking for