WIC-2am analog module as a back up interface for adsl

dear all
im planning to take adsl link in my branch for vpn connectivity.The router will be 1841 and planning to put wic-1 adsl but in case if my adsl link is down i need connectivity so for that im planning to put one wic-2AM card and connect a PSTN line to it, so that it will dial to the provider and my people in branch can continue working.
this is my plan.so when the adsl come up will this wic-2AM will shut down and adsl will come up? can i configure in that way?
kindly suggest.
regrads
Binoy

If you are using netctl, something like the following may work:
# /etc/systemd/system/eth0_phy.service
[Unit]
Description=Custom phy setting for eth0
Before=[email protected]
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=ethtool -s eth0 speed 100 duplex full autoneg off
ExecStop=ethtool -s eth0 autoneg on
[Install]
RequiredBy=[email protected]
Install the above file, then run
systemctl daemon-reload
netctl reenable eth0
netctl restart eth0
That said, there is probably an underlying hardware problem which will continue to make the link unreliable. Since autonegotiation succeeds with a different link partner, I would suspect the router. Did you try a different port on the router?

Similar Messages

  • NI DualPoint Analog Module Problems

    I have been unsuccessful in making NI's 778069-08 (Analog Input) and 778070-06 (Analog Output) modules work in my FP-TB-10 bases. They physically don't plug in easily, and when they finally fit, are not seen as analog modules, in MAX - they are seen as digital!
    I have ordered Grayhill 73L-IV10's and 73L-OV10's, and they fit and work perfectly, every time (and MAX sees them as analog!)
    My local rep sent the modules back to Austin, and they couldn't find anything wrong with them...they are now saying there's an issue with the TB-10 bases.
    I'm guessing that NI's got the modules labeled wrong, or Grayhill slid the wrong PC boards into the modules they made for NI before they epoxied them shut.
    Anyone else have any experiences with this?
    Mike

    Like Chris , I also Just wanted to add my experiences for the benefit of others.
    I had a similar problem, and desolved it exactly like Cheris.
    But I still have an Undissolve issue with FP-AI-V100m dualpoint in FP-2015 system.
    My system works 24/365 (non-stop), somtime for monthes with no problems. Then I find that the FP-2015 is not working, and all it's leds are off, although the power supplay is OK (24vdc). After a power reset the system will continue working fine for some days/hours, but then it will fell down again, and so on..
    I replaced the TB-10 (type D), the FP-2015, the Power supplay, but the issue have not "stop" until I replaced the PF-AI-V100m. Not really stop, but give me some more monthes of silence.
    I test the voltage of the Oxygen sensor (only 1 is connected to that DualPoint), and it is in the range ot 0-100mv.
    I replaced the FP-AI-V100m already twice, the "bad" DualPoint caused the same problem when it is connected to a different Controler.
    I have a second system, with a same configuration, and have no problems their ..
    After more than a year of problems, reading also other's problems in this forum,
    I'm changing sensors and TB-10 to FP-AI-110, with a hope that it will be more stable.
    My configuration is:
    FP-2015, TB-10 (FP-RTD-PT100 in slot 1, FP-AI-v100m in slot 2), FP-DI-301, FP-DO-420 *2 modules.
    I use 2 24vdc power suppliers, each with 2 separate V.out for the different modules.
    Try to take over the world!

  • Unity analog module to harris 20-20Lx integration

    I will integrate a unity via analog module to harris pbx 20-20LX and I read the cisco integration guide but anybody knows what means?:
    phone system? means pbx?
    The voice messaging ports in the phone system means analog ext(lines)?
    What realy need for make this integration?
    Thanks

    Hi Mike thanks for the response.
    I ended up going with SIP between the CUBE/Unity SRSV as well with dial peers for DID's (higher preference ) and the voicemail extension.
    I ran into an issue where calls from Unity SRSV to registered ephones were going back out the ITSP SIP trunk. The following setting resolved it:
    voice service voip
    no supplementary-service sip refer
    From my understanding the CUBE would attempt SIP refer first, and when refer is not an available option it will drop back to SCCP which then uses the ephone related dial peers.
    Hopefully this helps someone else as well.

  • The difference in calling an application module from a backing bean

    Hello everybody!
    I don't understand exactly, where is the difference in calling an application module from a backing bean in the following ways.
    Example 1
    FacesContext context = FacesContext.getCurrentInstance();
    ValueBinding vb = context.getApplication().createValueBinding("#{data}");
    BindingContext bc = (BindingContext)vb.getValue(context);
    DCDataControl dc = bc.findDataControl("AppModuleDataControl");
    AppModuleImpl appModule = (AppModuleImpl)dc.getDataProvider();Example 2
    String amDef = "model.services.AppModule";
    String config = "AppModuleLocal";
    AppModuleImpl appModule = (AppModuleImpl)Configuration.createRootApplicationModule(amDef, config);Example 3 (the same like Example 1???)
    String EL = "#{data.AppModuleDataControl.dataProvider}";
    FacesContext fc = FacesContext.getCurrentInstance();
    ValueBinding vb = fc.getApplication().createValueBinding(EL);
    AppModuleImpl appModule = (AppModuleImpl)vb.getValue(fc);Please can anybody explain, what the three examples do? Which example is preferred to call an application-module-method from a backing bean?
    Thanks and regards
    Majo
    Edit: I am using ADF BC 10g in JDev10 :)

    Hi :)
    >
    This could work, but can you describe the use case for which you need to get the ApplicationModule?
    Maybe we can find a better way to implement your functionality.
    >
    Sure, i know a lot of better ways to implement the same functionality too but its a huge project, its not my code and we have no time to reimplement this functions ;)
    Frank, i don't understand the first line of your code.
    DCBindingContainer bindings = ... resolve #{bindings}Where do i get the bindingContainer, if I don't have the "JSFUtils"- or "ADFUtils"-classes?
    Regards
    Majo
    Edit:
    Sorry, i have answer, before i think about it ;)
    FacesContext context = FacesContext.getCurrentInstance();
    Application app = context.getApplication();
    DCBindingContainer bindings = (DCBindingContainer)app.getVariableResolver().resolveVariable(context, "bindings");
    BindingContext bctx = bindings.getBindingContext();
    DCDataControl dc = bctx.findDataControl("AppModuleDataControl");
    AppModuleImpl am = (AppModuleImpl)dc.getDataProvider();or in my backing bean, when i add the property to the faces-config.xml
    DCBindingContainer bindings = this.getBindings();
    BindingContext bctx = bindings.getBindingContext();
    DCDataControl dc = bctx.findDataControl("AppModuleDataControl");
    AppModuleImpl am = (AppModuleImpl)dc.getDataProvider();Is this right?

  • Compilation Problem with Analog Modulation in Debug64 mod

    I can compile and run the AMDemodulate program in the analog modulation toolkilt with Debug mode successfully.
    However, I get the following link errors with Debug64 mod. 
    4 Project link errors
    Undefined symbol 'ModtCreateSessionHandle' referenced in "AMDemodulation.c".
    Undefined symbol 'ModtDestroySessionHandle' referenced in "AMDemodulation.c".
    Undefined symbol 'ModtGetErrorString' referenced in "AMDemodulation.c".
    Undefined symbol 'ModtAMDemodulate_DSB' referenced in "AMDemodulation.c".
    Is there any configuration for analog module?
    Thanks,
    Cihan.

    Hello Culas,
    We do not have a time line for upgrading the modulation toolkit for CVI over to 64-bit.  We also do not have a suggested method to migrate to 64 bit because of the restrictions of Windows on Windows 64(cannot use 32 bit DLL within 64 bit programs).
    Anthony F.
    Product Marketing Engineer
    National Instruments

  • 1751 and WIC-2AM

    Hello!
    I try to use a Cisco 1751 with a WIC-2AM card, but the IOS doesn't recognize it.
    After booting i got the following:
    00:00:06: %PQUICC-1-UNKNOWN_WIC: PQUICC(0), WIC card has an unknown ID of 0x37"
    I checked that WIC-2AM supported by 1751.

    Hi,
    Use the following link for the solution.
    http://www.cisco.com/en/US/products/hw/routers/ps221/prod_configuration_guide09186a008007cf90.html
    There is some where slot problem. Please revert for further queries.
    Regards,
    Dharmesh Purohit

  • [svn:bz-trunk] 22848: Add back the fix for Watson 2780086.

    Revision: 22848
    Revision: 22848
    Author:   [email protected]
    Date:     2011-10-02 11:00:09 -0700 (Sun, 02 Oct 2011)
    Log Message:
    Add back the fix for Watson 2780086. This was originally added in changelist 21123 and then backed out in changelist 21160.
    Checkintests: passed
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/security/LoginManager.java

    The problem is that the one available in the repo does not support sfz files (it only supports gig).
    I just compiled the one from AUR. I don't know how I missed that, even though I looked for it in the AUR. It's working perfectly now.
    I am curious though why the one directly from the site was not compiling.
    Thanks a million for the tip

  • Error while using Back ground Job for Planning function in BPS

    I have created FM and Program for scdualing  Back ground Job for Planning function.
    I have created Planning function with exit option and passed parameter  Global seqence name.
    Error is lot of Jobs are creating while exe in BPS0
    Kindly help me the same
    Regards
    GR

    Hi Rama,
    It seems there are two diff. functional modules (UPC_BUNDLE_EXECUTE AND UPC_BUNDLE_EXECUTE_STEP). The second one divides the planning sequesces on the basis of something you specify (e.g. company code). Just make sure that you are using correct FM.
    just a thought.......
    Regards,
    SK

  • Back up plan for Asset year end closing

    Hi,
    Do you have any back plan prepared for Asset year end closing especially t.code AJRW and AJAB (running this in Background).
    what back up plan we should recommend if it fails for already happened activities.
    Regards
    Shanu

    Hi Shanu,
    there is a Test-run modus.
    If it fails for some reasons, you will get a error message. Then you solve this error and repeat  AJRW or AJAB.
    regards Bernhard

  • JSP back-end interface to Remote server. Please help the newbie

    Could someone comment on pros and cons of the JSP back-end interfaces to the remote server/programs using..
    (1) Socket Interface between JSP and Remote Server. One socket for one JSP session. JSP to create and delete the socket when done.
    (2) RMI between JSP and Remote program.
    (3) Message Exchange using JMS between JSP and the Remote Server.
    (4) Peer-to-peer JAXM message exchange. JSP/JAXM Client to Remote JAXM Server
    (5) Anything else?
    Thanks in advance..

    (1) Socket Interface between JSP and Remote Server.
    One socket for one JSP session. JSP to create and
    delete the socket when done.JSPs are compiled to servlets, which use the HTTP protocol. The remote server should be the servlet/JSP engine.
    (2) RMI between JSP and Remote program.As soon as you say "JSP", you're assuming HTTP request/response. If you want to talk to RMI objects, I think that's best done elsewhere than a JSP. They really should be for interface only. Have your JSP talk to a central, front controller servlet and have it invoke methods that deal with RMI objects or EJBs or POJOs on the back end. That stuff doesn't belong in JSPs, IMO.
    (3) Message Exchange using JMS between JSP and the Remote Server.No.
    (4) Peer-to-peer JAXM message exchange. JSP/JAXM
    Client to Remote JAXM ServerNo. This is crazy. JSP = HTTP, which is client/server by definition.
    (5) Anything else?All these might be fine options, but they don't belong in JSPs. Those should be for Web interface, a thin client. The details of how you process (e.g., RMI vs. EJB, synchronous vs. asynchronous, etc.) are best encapsulated somewhere else besides a JSP.
    HTTP is a client/server, synchronous, request/response protocol, of course. As soon as you say JSP, these assumptions are built into your system. You can do asynchronous processing, but you still have to send back a response synchronously (e.g., "Your order is being processed. Please come back.")

  • Just got my iPad 2 back from apple for battery exchange.  It was updated to iOS 7.02.  Trying to get all my apps back but my App Store is locked onto a purchased app and won't let me do anything. Help ,

    My App Store is locked at an app I purchased and won't let me make any selections.  What do I do.  I just got my iPad back from factory for new battery.  It was updated to iOS 7.02 at factory.  Have not been able to take a movie either.  Will take picture.  No idea what square is, but won't let me select it either.

    Try close all apps in multi-task window
    1. Double tap the home button to bring up the multi-tasking view
    2. Swipe the app's windows upwards to close
    3. The app will fly off the screen

  • How to get the back order quantity for sales Order

    Hi Friends,
    I want to get the back order quantity for sales order . in MD04 t-code,
    there is a field(MDEZ-MNG01) for Received Qty/ Required qty.  But MDEZ is a structure.
    I tried from MDTB table, but the table is not updated with the values in MD04.
    Please guide me from which table I can get the back order Qty for sales Order
    (ref: t-code  MD04, MRP element = CusOrd).
    Thanks,
    Sagar

    >
    VIdya Sagar wrote:
    > Hi,
    >
    > Isn't  there any difference b/n Open Sales Order and Back order??
    Yes Quite Difference.
    Read:
    http://www.sap-img.com/sap-sd/explain-the-meaning-of-an-open-sales-order.htm
    http://help.sap.com/saphelp_sbo2005asp1/helpdata/en/b6/bdb9b2f02842348c9edbe78af863c4/content.htm

  • I had Premier pro given me by the college I attend and do no use wi fi and do not use cloud. My laptop completely died and will be sent back to Apple for exchange. How can I reinstall Premier Pro on a new Apple computer since the old one is completly dead

    I had Premier pro given me by the college I attend and do no use wi fi and do not use cloud. My laptop completely died and will be sent back to Apple for exchange. How can I reinstall Premier Pro on a new Apple computer since the old one is completly dead and could not be unregistered?

    Hi,
    You have not specified which version of Premiere Pro was given to you. If you don't have the disc (which i suppose you don't have) you will have to download it online.
    As far as your registration is concerned, for Premiere Pro CS6 or earlier you will have to reach Adobe chat support for further help: http://helpx.adobe.com/contact.html
    For Premiere Pro CC and later, you will not have much problems reactivating it.
    Thanks,
    Rameez

  • Simple question:  I want to use iCloud as a back up disk for my documents folder.  How can I do this?  If I cannot do this, why am I paying for access to "the cloud?"

    Simple question:  I want to use iCloud as a back up disk for my documents folder.  How can I do this?  If I cannot do this, why am I paying for access to "the cloud?"

    iCloud does not provide general file storage or backup, so you cannot back up your Documents folder using it. You will need to find a third-party alternative - this page examines some options (some are free):
    http://rfwilmut.net/missing3
    iCloud at basic level, with 5GB is storage, is free: you only pay anything if you want to increase the storage space.

  • Function Module to get ABAP source code for a specific version

    Hi all
    Is there a function module that I can use to get the source code of another function module at a specific version?
    For example, can I call a function module passing in "FM_NAME" and "FM_VERSION" and have it return the lines of code associated with that object?
    Thanks in advance.
    Stuart

    Thanks guys
    That's incredibly helpful! I have one more question that I just thought of last night...
    Is there a way to hook into the code activation process? I want to be able to take a snapshot of the ABAP source code at each point when it is activated for use in another system, but need to be able to intercept this event and get the source code at that point in time.
    Any ideas?
    Thanks!

Maybe you are looking for

  • ITunes is empty in Media Browser

    Hello everybody! I have a problem with the Media Browser in iMovie and iPhoto 09 on Snow Leopard (upgraded): The part "iTunes" is empty. But everything is fine in iDVD and also in the finder part "Media" when you "Open a file". I tried to reinstall i

  • SSAS - Creating a Measure For Defects Per Unit

    Hello, everyone I'm attempting to create a Defect Per Unit calculation. I have an odd situation where my source data is recording all of instances of a given Defect (the single defect is recorded in multiple locations, DimLocation). So I'm receiving

  • Why the time shows "00:00:00"

    Hi, I'm creating timezone convert function to cover that the zone that New_time function won't cover in 8i with the help of JAVA. However, with the code below, the time will be always "00:00:00" when return from Oracle. Do I missing something? Here a

  • "Unrepairable" issue on start up with OS 10.7.5 Lion "Permissions"?

    Hi. I have an early 2008 MacBook with 10.7.5 Lion OS. I installed Lion online. I can't update to Maverick on this early version of MacBook to fix the following problem with the OS... My chronic problem is with start up. I get white or black screen an

  • Need flow for SD,MM,FI - modules

    Need flow for SD,MM,FI - modules