[Solved] ip route add to table not working

i have added two table names wifi and voda to /etc/iproute2/rt_tables.
255 local
254 main
253 default
0 unspec
1 wifi
2 voda
Now i am trying to add rule to the table voda it  giving error.
root# ip route add 10.178.202.42/14 dev wwan0 src 10.178.202.42 table voda
RTNETLINK answers: Invalid argument
can some one help.
did ip dont know that the table voda in listed in the rt_tables file
Last edited by sant527 (2014-03-29 10:42:48)

Most online subnet calculators should do. I personally use this one if I run in to a situation where I can't be bothered to calculate myself

Similar Messages

  • Add Row Button Not Working

    I've read the threads and done numerous searches.  Not sure why the add row button isn't working, other buttons work.
    Here's what I've found and done.
    Print button subform - positioned (have tried flowed, too) allow page breaks
    Table: body rows vary   -    Insert wrap in subform  - subform flowed - allow page breaks
         row 1 binding - repeat row for each data item - min 1, max 25 (why won't it  keep an initial count when I try putting in 1 or 0?)
    Form properties - preview in dynamic PDF, interactive   -   PDF render format dynamic xml, run in 9.0 or later (to remove errors)
    Insert Row Button in Subform Row 1 Cell 1 (not counting header row) on  click, JavaScript run at client tried table.row1.instancemanager.addinstance(1);   also tried full path
    saved as dynamic pdf
    My hierarchy looks like:
    form1   [autofit]
         master pages
              page 1
                   untitled content area
         printbuttonSubForm  [flowed, top to bottom, allow page breaks]
              untitled subform [flowed, top to bottom, allow page breaks]
                   printbutton1
              tablesf    [flowed, top to bottom, allow page breaks]
                   table1    [allow page breaks]
                        headerRow
                             cell1
                             cell2 etc
                        Row1   [allow page breaks, repeat row for each data item, min 1, max 25 (why won't it  keep an initial count when I try putting in 1 or 0?)]
                             subform   [allow page breaks, repeat row for each data item, min 1, max 25
                                            (why won't it  keep an initial count when I try putting in 1 or 0?)]
                                  button1    table1.row1.subform1.instanceManager.addinstance(1);
                             cell2, etc
         Referenced objects
    Questions:
    I click the Add Row button, but nothing happens, why?  The print button works.
    Found a reference to def instances of same row, what does that mean?
    Is my hierarchy correct?
    How to set Form1 to flow? Object says mixed objects with no options
    Many thanks for your assistance! Leslie

    Hi Leslie,
    There could be a few things.
    First check that the form is saved as Dynamic XML in the save as dialog. If it is saved as Static the add instance will not work.
    Make sure that the object you are targetting is set to repeat in the Object > Binding tab
    Check your syntax in the script editor (button above the editor). Some of your post is not camel case. For example addInstance and instanceManager. Note the capital letter for the second word.
    If you could share your form it would be easier to track down what the problem is. You can use Acrobat.com or YouSendIt.com or some other file sharing site. Just remember to post the published URL.
    Good luck,
    Niall

  • PowerPoint add-in is not working when installed for All Users using msi installer.

    Hi All,
    I have created PowerPoint add-in using c#-vsto. I have created msi installer to install this add-in with following two options:
    1. Just me
    2. Everyone
    However, add-in is not working properly (Events and custom task panes are not working). 
    I have created registry key as below
    1. for "Everyone" : HKLM\Software\Microsoft\Office\Powerpoint\Addins\MyAdd-in
    2. for Just me : HKPU\Software\Microsoft\Office\Powerpoint\Addins\MyAdd-in
    But when I set InstallAllUsersVisible property to False (When add-in is installed only for current user ), then add-in works fine for current user.
    Please let me know if anything is missing!!!
    Thanks

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Office, the issue is more related to develop the add-in, you'd better post your question to the MSDN forum for VSTO
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=vsto&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support

  • I have worked many hours on an iphoto book and I am up to page 29.  I cannot add any more pages and I need to!  Please help!!  "Add page" is not working!!!

    I have worked many hours on an iphoto book and I am up to page 29.  I cannot add any more pages past that and I need to!  Please help!!  "Add page" is not working!!!

    Fixed it thanks to similar questions and answers to them.  Thanks all!

  • Bought a new router location services will not work hooked up old router location services came right back on

    bought a new linksys router location services will not work on i-pad hooked old router back up and it started working again linksys was no help

    WiFi iPads determine location through a database of router locations. Your new one is not in the database, give it some time and it will be added.

  • Dynamic Add table not working

    Hi,
    I have to  2 subforms,name table_subform[0] and table_subform[1] .
    To add a new table , i use script :
    var sSubformSOM = "xfa.form.form1.page1.table_subform";
    var oSubform = xfa.resolveNode(sSubformSOM);    
    var sParentSOM = oSubform.parent.somExpression;   
    var sManagerSOM = sParentSOM + "._" + oSubform.name+ "["+ 1 +"]"; ;  // Control the the new table location
    var oManager = xfa.resolveNode(sManagerSOM);
    oManager.addInstance(1);
    PROBLEM : , the this add table function "ADD THE NEW TABLE IN BETWEEN table_subform[0] and table_subform[1].
    REQUIREMENT : The new table should added next to the last table.
    SOLUTION 1 : var sManagerSOM = sParentSOM + "._" + oSubform.name + "["+ 1 +"]"; // index 1 to add the new table next to the second table
    var sSubformSOM = "xfa.form.form1.page1.table_subform";
    var oSubform = xfa.resolveNode(sSubformSOM);   
    var sParentSOM = oSubform.parent.somExpression;   
    var sManagerSOM = sParentSOM + "._" + oSubform.name+ "["+ 2 +"]"; ;  // Control the the new table location
    var oManager = xfa.resolveNode(sManagerSOM);
    oManager.addInstance(1);
    PROBLEM : NOW all my "new table" are added by reference to oSubform.name + "["+ 1 +"]";  OR oSubform.name[1]
                       Now the add table are working fine.
                        But this create an issue when deleting the table from the same subform.
                         If i click the "Delete table at "table_subform[1] - which index is used to create the rest of the tables" , it delete      table_subform[2],table_subform[3] in sequence.
    Anyone have any solution for this ????

    The removeInstance method requires an index so that it knows which subform to remove. If the button that you are pressing is part of the subform that you are removiing you can use the this.parent.index to return the index that you are on and as such the appropriate subform can be removed. Depending on your structure you may need to use the parent keyword to get back the level that you need. In many cases it gets confusing to know which subform is repeating so you can add this javascript command to the enter event of a field in the subform.
    app.alert(this.somExpression)
    This command will show you the complete somExpression of the field and as such you will know the somExpression for the rest of the subform. You may need to click on the field in a couple of different rows to understand the pattern that is emerging. This command is only for debugging ...you woudl remove it after you figure out your issue.
    Hope that helps
    Paul

  • [SOLVED] ASUS N56VZ FN+FX Keys not working

    I got this new laptop some time ago. I had WIndows 8 running on it, but since I need linux for college I decided to install Arch on it. I removed windows and created a new GUID Partition Table on the Hard drive.
    sda1 512M EFI Parition
    sda2 250G Windows Parition (is not installed yet)
    sda3 512M Boot
    sda4 30G Root
    sda6 8G Swap
    sda5 <Rest of space> Home
    I've installed Arch_x86-64, with rEFInd as bootloader. I have KDE Running on my machine, everything is working fine except for the FN+FX Keys:
    FN+
    F1 Sleep
    F2 WIreless ON/OFF
    F3 Keyboard lights intensity down
    F4 Keyboard lights intensity up
    F5 Screen brightness down
    F6 Screen brightness up
    F7 Screen brightness off
    F8 Proyector toggle
    F9 Touchpad ON\OFF
    F10 Volume off
    F11 Volume down
    F12 Volume up
    The only keys that works correctly are FN+F{1,2,7,10,11,12}, but some of the most important keys (keyboard lights, screen brigthess) are not working at all.
    I need help fixing this, I hope there's a workaround or something.
    Cheers.
    Edit: Solved the problem following the steps shown in here. I also confirm that the solution provided there works very well on the Asus N56VZ.
    Last edited by AurosGamma (2012-12-02 06:00:38)

    If all else fails, just map them with xbindkeys until they are either fixed upstream.
    https://wiki.archlinux.org/index.php/Xbindkeys
    You won't get those popup 'blob' but it gets the trick done.  There are other ways like sxhkd https://bbs.archlinux.org/viewtopic.php?id=155613

  • Join AirPort Express to D-Link DGL4300 router in client mode not working

    I only want to be able to stream iTunes to my AirPort Express via my existing network which is controlled by my D-Link DGL-4300 router.
    My AirPort Express works as an iTunes streamer because I tested it running its own network (ignoring the existing D-Link network). I am trying to connect in client mode (I think), but my D-Link router just can't see the AirPort Express which seems to disappear off the radar after it restarts with the new settings.
    This is what happens...
    1. AirPort Express Hard Reset
    2. Connect to Airport Express wireless network (which disconnects me from my D-Link DGL4300 wireless network “K1000578”)
    3. Run AirPort Utility and enter “Assist Me” mode.
    4. Set AirPort Express name and password then click continue.
    5. Select “I have a wireless network and want to add AirPort Express or replace an existing device on my network” then click continue.
    6. Select “I want AirPort Express to join my current network”
    7. Select the name of my D-Link DGL4300 network “K1000578” from the drop down box, select WPA/WPA2 Personal wireless security type and enter the DGL4300 password, then click continue.
    8. Click Update in the summary screen.
    What happens then is...
    MESSAGE BOX “Apple wireless device restarting. Please wait...”
    MESSAGE BOX “Connecting to network ‘K1000578’. Please wait...”
    AirPort Utility returns with a message advising that although the device was successfully updated, AirPort utility was unable to find it after restarting. It also suggests that I made need to reselect my network for the AirPort menu and try again.
    My computer is now unable to even see the AirPort express device.
    When I try to reconnect to my existing DGL4300 network “K1000578”, it says that the settings saved on this computer for the network do not match the requirements of the network. !! ***!!
    I can fix the last part above by deleting the connection information for my DGL4300 and searching for it again. BUT HOW ON EARTH DO I CONNECT MY AIRPORT EXPRESS TO MY NETWORK?!!
    I am able to connect my PC directly to the AirPort Express (if I set it up as its own network) and successfully stream iTunes, but this means I have to disconnect from my DGL4300 network also which means I won’t get internet on that machine and I can’t use my iPhone Remote App.
    This is my second experience with Apples “it just works” philosophy. MobileMe was my first. Guess how I’m feeling!
    Any help at all is kindly appreciated.

    I forgot to mention, I have turned off the MAC address filters on my router, so that's not the cause.

  • DB Adapter Re Import Table Not working (JDev 11.1.1.6.0)

    I am trying to refresh the DB adapter tables after a few columns were added. Here is what I did.
    Adapter configuration wizard --> Import Tables --> Query table --> Move the same table from Available section to Selected Section --> Click OK.
    A message pops up to confirm 'Re-Import Table'. Click Yes.
    At this point it is suppose to refresh the table and add the new columns. But when I click next, it says there are new columns available in the table. The new columns are not added to the DB adapter query.
    Has any one faced this issue? Please suggest any ideas or work around to add the columns.
    Thanks
    Ismail M.

    Re-Import table did not work for me even after lot of struggle. I tried tampering with jca, wsdl etc, re-installed the JDeveloper, tried on multiple machines but nothing worked. I finally gave up and recreated the DB adapter with 'pure sql query' option instead of tables. Re did the mappings etc. It was hard but I seem to have no other options. I will never use the table option again.
    Ismail-m

  • Updating database table - not working

    Hi ,
              My database table 1 is having multiple data for a primary key
    example :
    table 1:
    GLOBMATNR  -> Primary key
    WERKS  --> non primary key -- multiple for globmatnr
    MBLNR --> non primary key -- multiple for globmatnr
    MBLPO--> non primary key --
    BUKRS --> non primary key -- multiple for globmatnr
    i m using below statement to make entry into the table.. but this insert is not working.. I stead of putting 30 entries its just inserting 1 entry..
    Can any one help me in this..?
    INSERT table1 FROM TABLE internal_table ACCEPTING DUPLICATE KEYS.
    Edited by: neha gupta on Oct 29, 2010 1:25 PM

    Hi,
    Hit F1 on ACCEPTING DUPLICATE KEYS. You will identify why it is inserting 1 line only. I hope the table is a custom table. For fields which can have multiple values, make it primary key.
    In your example table, GLOBMATNR, WERKS, MBLNR could be primary keys if WERKS is in one company code only. If not add BUKRS also
    Hope it helps
    Sujay

  • Add new bookmark not working

    Running Firefox 3.6.13 on a Dell Inspiron laptop. Everything works great, except for one catch: I can't add new bookmarks. Pressing Control+D does nothing, clicking add new bookmark does nothing, dragging the tab into the dropdown bookmark menu does nothing. I've tried the entire tree of options on the Bookmarks not saved Troubleshooing page (https://support.mozilla.com/en-US/kb/Bookmarks%20not%20saved) which, among other things, involved resetting my localstore file, disabling all my extensions/themes/add-ons. I also disabled my Norton 360 firewall, which apparently can cause issues, but this didn't seem to solve it. And I have of course done the usual, deleted all cookies/browser cache etc and tried rebooting. Any idea what else I should try?
    MAJOR EDIT: Just realized it doesn't work in Safe Mode. What had happened was I tried to bookmark Google (not realizing I already had) and it let me do that, which is the same in normal firefox- pressing Control+D will bring up the expected box, but only on pages I'd previously bookmarked.

    Yes, as I said I tried that. I've disable every single one of my add-ons, themes and extensions but it still won't bookmark. EDIT: Does not work, even in Safe Mode. I agree that's weird behavior but the instructions there don't solve it.
    For troubleshooting reference though, here's all the extensions/themes I have installed-if any of them have known issues even when disabled:
    Adblock Plus
    Adblock Plus Pop-Up Addon
    Download Statusbar
    Flashblock
    Greasemonkey
    Norton IPS (I'm unable to unistall this due to Norton's crappiness but I leave it perpetually disabled, and as I said in the original post I've made the changes FF recommends for Norton's firewall/firefox settings)
    Xmarks
    Lavafox V1-Green
    Strata40
    As far as I know, all add-ons are up to date

  • Belle add new widgets not working

    I can add all the suplied widgets but when i click the store button icon at the bottom of the page
    it says :-
    There was a problem opening this page, it could be lost connection or a slow network, Check connection or try again.
    I have tried at all times of the day and with network connection and wifi
    (my normal "nokia store"  works ok)
    Is there a way of searching just belle wedgets in the Nokia store.   Reason being i did not get some of the Belle widgets that i have seen in Belle demo video's .  (e.g. the small clock)

    Yes, as I said I tried that. I've disable every single one of my add-ons, themes and extensions but it still won't bookmark. EDIT: Does not work, even in Safe Mode. I agree that's weird behavior but the instructions there don't solve it.
    For troubleshooting reference though, here's all the extensions/themes I have installed-if any of them have known issues even when disabled:
    Adblock Plus
    Adblock Plus Pop-Up Addon
    Download Statusbar
    Flashblock
    Greasemonkey
    Norton IPS (I'm unable to unistall this due to Norton's crappiness but I leave it perpetually disabled, and as I said in the original post I've made the changes FF recommends for Norton's firewall/firefox settings)
    Xmarks
    Lavafox V1-Green
    Strata40
    As far as I know, all add-ons are up to date

  • Button order and routing from PS menu not working

    Ugh, this is driving me crazy.
    When authoring a Blu-ray, I've gone through the same steps since I started but all of a sudden the menus I'm creating in PS CS5 for Encore CS5 are not working and for the life of me I can't figure out why.
    The problem I'm having is that I set everything up in Photoshop then import the menu into Encore however when using the navigation of a remote, scrolling down skips some buttons and doesn't cycle through them normally.
    For example, let's say I have eight buttons defined in a PSD.
    1
    2
    3
    4
    5
    6
    7
    8
    When I preview or do a test burn, the highlight will stop on 1 and 2 but skip 3 and 5 and other random button definitions.  And then when it gets to the last, it doesn't cycle back to the first.
    I have everything set up correctly as far as I know - group layers prefaced with (+), highlight cursor prefaced with (=1), etc.  And the order looks good in Encore.
    Extremely frustrated, anyone else having this problem in CS5?  I can up the PSD if anyone wants to check it out.
    Thanks,
    Tom

    Can you post a screenshot of the menu with button routing on?
    I second Stanley's request, and please Crop into that area, and also Save your JPEG, or PNG, with adequate resolution for people to see the numbers on your Button Routing. Also, if you have any specific desires for the order of your Button Routing, please define that.
    Note that En will Automatically Route Buttons, based on their Layer Set Order in PS. If you have done some moving around of the order of Button Layer Sets, or have done some Copy/Duplicate, then what you think the order should be, but it might not be so. En will start at the bottom of the Layers Panel, and assign the identifier, Button 1 (regardless of what name you might have assigned), to the lowest Button, and working up, one Button Layer Set at a time, until it reaches the top. Can you also post a screen-cap of your Button Layer Sets (can be closed for a clear shot of the entire Palette), with the Layers Palette showing clearly, and the image with the Buttons showing near by? That could also be very helpful.
    Good luck,
    Hunt

  • New Condition Table not working in Sales order

    Dear All,
    I am facing problem in pricing procedure. I have created new condition table(LIFNR & ROUTE), included Vendor(Fwd Agent) and Route in condition table with sales area. I have added that condition table in access sequence and assigned access sequence to condition type. Then Condition type added into pricing procedure and assigned pricing procedure to document type.
    In sales order I've added route and fwd agent but while checking in analysis system does not determine route and fwd agent.
    Thanks and Regards,
    Kaushal

    hi,
    i have a query to ask why you need LIFNR in condition table creation.
    where in sales order it will trigger automatically.
    please check the config settings for route determiantion automatically.
    so that if route comes automatically into the sales order then from where you will trigger LIFNR.
    please clarify.
    regards,
    balajia.

  • Acrobat XI Pro "add text comment" not working

    In Acrobat, my "Add Text Comment" comment feature no longer works. I am using Acrobat XI Pro on Win7.
    The property "Locked" vs Make Property Default fix on these forums did not work for me.
    When I click on a document to add a text comment,
    1. Acrobat creates a small square (uneditable)
    2. Acrobat adds a comment to the comments list
    I am unable to type any text, nor edit the box, nor change the box's size, nor see the properties.
    Any thoughts are appreciated as to how to fix this feature.
    Michael

    Hi cpa-michael,
    If this issue appears in any PDF that you try to add comments to, please repair the Acrobat installation by choosing Help > Repair Acrobat Installation.
    If the issue appears only in one PDF file, that PDF may be damaged and you can try Saving As to repair the document, or you can try to "refry" the PDF by printing to PDF from within Acrobat.
    Best,
    Sara

Maybe you are looking for