Systemd network-route configuration: defining source-ip doesn't work

I have a machine that has multiple outgoing IP -addresses (one of which is a Keepalived VIP) and I want to force outgoing traffic to use a certain IP. This is what I thought would be the best solution:
[Match]
Name=eth0
[Network]
DNS=8.8.8.8
DNS=2001:4860:4860::8888
Address=a.b.c.d/24
Address=x:y:z/64
Gateway=x:y
[Route]
Destination=0.0.0.0/0
Gateway=a.b.c.d
Source=a.b.c.d/32
However; it doesn't work. `ip route` still shows "default via a.b.c.d dev eth0" without a source IP. If I manually execute `ip route del default via a.b.c.d dev eth0  proto static` it works fine
Last edited by Spider.007 (2015-01-19 13:27:29)

A small update.
The collisions happen everytime you try to do something (dhcp and ping). It doesn't collide with any of the other computers so the problem is 100% on the computer or between it and the router.
Edit: only at the computer, router is working fine with the computer since it works when you try with the livecd.
The computer can't seem to reconnect after the router been down too (the router recognises a network connection but it isn't in the list of attached devices).
I should try with an older kernel later since it works on the livecd and has been working before.
I'm not entirely sure the tlan module gives what it should, anyone one knows if this output seems ok?
TLAN: eth0: Starting autonegotiation.
TLAN: Giving autonegotiation more time.
TLAN: Please check that your adapter has
TLAN: been properly connected to a HUB or Switch.
TLAN: Trying to establish link in background...
TLAN: eth0: Autonegotiation complete.
TLAN Starting internal PHY with HALF-DUPLEX
TLAN: eth0: Link active
The tlan module is pretty weird but what I remeber - the output looked like that when I had it working too.
Last edited by Lonsas (2008-12-25 17:57:31)

Similar Messages

  • Hi guys, my iPhone 4S (ios 7.0.2) can't connect wi-fi. I've already reseted Network Settings, but Wi-fi still doesn't work. how can I fix it? thank you!

    hi guys, my iPhone 4S (ios 7.0.2) can't connect wi-fi. I've already reseted Network Settings, but Wi-fi still doesn't work. how can I fix it? thank you!

    Thank you!
    doesn't like one at Starbucks or McDonald's...
    I can not activate or deactivate the Wi-fi button ... I don't know how I can explain... the wi-fi is always OFF.
    I've reset the network settings and restored by itunes... but I'm still without wi-fi ...

  • Delta in source system doesn't work

    I've created delta-enabled generic datasource. The delta field is timestamp field. I've done Initial Delta run, posted couple new records with appropriate timestamps, tried to run delta but it doesn't work. Even on test delta run RSA3 in source system.
    Why?

    Hi  Gediminas,
    You need to maintain safety intervals(at least lower limit)
    Check: [How tou2026 Create Generic Delta|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/84bf4d68-0601-0010-13b5-b062adbb3e33]
    Hope it Helps
    Srini

  • Bad adapter engine configuration - File Sender scenery doesn't work

    In file sender scenery, the adapter doesnu2019t pass any message to the Integration Engine.
    When I take a look to the communication channel monitoring it shows the channel with status OK (Green). But when I look into the audit log of the incoming message I see the following error:
    Received XI System Error. ErrorCode: INBOUND_BINDING_ERROR ErrorText:   ErrorStack: Error in sender agreement for party , service VLTEST, interface namespace urn:damm.es:vialactea:logistica, interface oa_SimpleLine No sender agreement found for , , , , ,
    The sender agreement exists in the Directory and the status of the cache is OK.
    But in the Message Data I see this End Point URL: http://asrmd:8082/sap/xi/engine/?type=entry
    This is adapter is attached to a development system instance number 80 and the port of the above URL is a reference to the TEST system instance number 82. I investigate this issue but I canu2019t find where the miss-configuration is causing this bad End Point.
    Have anybody an idea about this problem. Itu2019s the first time I found this kind of miss-configuration.
    All other adapters are working fine. The file receiver adapter is working fine too.
    Thanks in advanced.

    Hi Sergi,
    Now is clear. Sorry but I didn´t see your posts properly. I didn't move the cross bar until the final.
    So now I change my point of view.
    Go to Runtime Workbech --> Component Monitoring --> Integration Engine --> Test Message. Which URL is displayed here? is it right?
    If don't, effectively you have wrong configured your URL of the Integration Engine.
    Go to SLD --> Business Systems --> Select your XI business System. At the Integration Configuration tag check the URL, if it is wrong, change it and save the changes. Remember that the rol must be Integration Server.
    Refresh the caches.
    Hope it is usefull.
    Carlos

  • How do i get a network name? HOSTNAME=... doesn't work anymore

    Hi,
    I'm sure this question sounds very n00by, but this used to be working just fine in archlinux by setting the hostname variable and that was the network name as well. No issue and worked like a charme. However, i reinstalled my system and i got the (unpleasant) surprise of a lot of changes.
    So, what's the "new" equivalent of HOSTNAME="pc-name" so that it works on the network again? I'm using just the default stock network stuff but with a static ip, no special things.
    Right now i do have my hostname set in rc.conf but i can't ping my machine by that name. No, nothing in the local network changed. It really is only a reinstall of a local machine.
    Cheers,
    Mark

    2ManyDogs wrote:
    Do you also have the hostname set in /etc/hostname and /etc/hosts?
    ArchWiki wrote:
    A host name is a unique name created to identify a machine on a network. With Arch Linux, a machine's host name is set in /etc/hostname or until a restart using the hostname command. Host names are restricted to alphanumeric characters. The hyphen (-) can be used, but a host name cannot start or end with it. Length is restricted to 63 characters.
    Simply put your host name in to /etc/hostname (archlinux is the host name in this example):
    archlinux
    After setting a host name, it is also important to include the same host name in /etc/hosts. This will help processes that refer to the computer by its host name to find its IP address, as well as programs that rely on the gethostname() system call to determine the system's host name.
    Edit /etc/hosts and add the same HOSTNAME you entered in /etc/hostname:
    127.0.0.1 archlinux.domain.org localhost.localdomain localhost archlinux
    And do you have a nameserver in /etc/resolv.conf?
    If none of this works, can you try using dhcp in your rc.conf just to make sure it's a config problem?
    https://wiki.archlinux.org/index.php/HO … e_hostname
    Hi,
    I tried your suggestions and using dhcp it works partly.
    This is my static config:
    interface=eth0
    address=192.168.1.99
    netmask=255.255.255.0
    broadcast=192.168.1.255
    gateway=192.168.1.2
    When i use dhcp (so comment out the lines except interface=eth0) then i do get the name assigned, but i can't ping the pc or access it by name. I can by ip.
    If you have more suggestions, please do share
    Cheers,
    Mark

  • My web site has a link which automatically configures an email. Doesn't work in Firefox 5.0 but OK in IE 8, Opera and Netscape. v

    My web site is generated by Second Site , author John Cardinal, and contains email links which when selected automatically createsan email which all you need to do is fill in the body and send it. This has worked in the past in Firefox and does work now using IE 8, Opera, and Netscape browsers but does not work when using my Firefox browser neither locally on my computer or in my Internet website. Firefox is my browser of choice. This has worked in the past using Firefox.
    My web site is www.schulteis.com/omnibus/. On the presentation page, on the bottom, where it identifies Genealogist: Site Administrator. Select it and it may work for you. John Cardinal tested it on his local machine and it worked for him. His response to me was,
    "It's very likely that this is some sort of browser configuration error, and it's probably related to using a web-based email client, In
    Firefox, look under Options > Applications and see how the "Mailto" Content type is configured. It should probably say "Use Yahoo Mail" [it does]. I have never configured a browser to use a web-base email client, so I can't help more than that.
    Since this works fine on my computer and on my Internet site when using browsers IE 8, Opera, and Netscape but not Firefox, and I didn't do anything special for any browser to cause it to work, don't know what I could have done wrong for Firefox.
    I am using Yahoo mail.
    Thanks for your help
    Donald
    [email protected]

    I'm also running FF 36.0.4 on a Win 7 machine.  Here is what I see when I "open" the map (from the server - not inside DW):
    The map area stays white with no image even after several minutes.  The cursor does change to a hand when over the area where the map should be and if I click and drag there the cursor switches to the closed hand - so it's acting like the map is there and can be moved - but just no map shows up.
    I'll run it though the validator.  Thanks!

  • Define Custom Shape doesn't work in Photoshop CS5

    It seems to be impossible to Define Custom Shape in Photoshop CS5. This option in Edit menu always remains grayed out...
    Can anyone check and see if this is the case in your own installation of the program?
    Very same procedure works in Photoshop CS4 just fine, but not in CS5...

    Hi Fox,
    I think you might just have found a bug there. I've reported it upstairs.

  • ITunes 9.2.1.5 for Windows: Sharing / Home Sharing doesn't work

    I have a windows XP laptop and sometime within the last two months (after upgrading to 9.x??) sharing and home sharing stopped working.
    I have read the troubleshooting post, and everything is configured correctly. It doesn't work at home OR at work (although MAC users at work are having no problems).
    Can anyone confirm that this is a BUG in 9.2? Does anyone have any fixes? As I said, my ports are open. Of note: my iPhone remote app works on my home network with our Mac, but not the PC, indicating that the problem isn't the router. I did delete exceptions for iTunes, Bonjour, and ports 3689 TCP, 5353 UDP (which, curiously, allowed my remote to work with my PC itunes, but the remote does NOT show up in the sidebar.
    I think this is a bug, beyond the software firewall issues.
    Any help anyone can give me will be met with plaudits and wreaths of laurels.
    Thanks

    Let me know if this article works out for you: http://support.apple.com/kb/TS2972
    I haven't used a Windows laptop in a few years, so I don't have a lot to go from. Good Luck!
    Cheers,
    Rachyl

  • Default Gateway doesn't work when entered in address bar

    I'm trying to get to my router's settings. The default IP address of my router (192.168.1.1) doesn't work when I enter it in the address bar. Neither does the Default Gateway that I got from clicking on start, run, typing cmd and then ipconfig/all. Does anybody know how I can access my router settings without resetting it?

    That seems to be the modem default gateway... is your PC connected to the modem via a USB cable? (sometimes that might be the case)... or what port of the router is your modem connected to?

  • Mac connects to wifi, but internet doesn't work. Network diagnostics shows problem starts at ISP. All software is updated and all other devices are able to effectively use the wifi source.

    Mac connects to wifi, but internet doesn't work. Network diagnostics shows problem starts at ISP. All software is updated and all other devices are able to effectively use the wifi source.

    Hi, KK93. 
    Sometimes a simple power cycle of the router and Mac can resolve the issue.  However, try the steps in the article below to troubleshoot the Wi-Fi issue with your MacBook.
    Troubleshooting Wi-Fi issues in OS X
    http://support.apple.com/kb/HT4628
    Also, see the article below to make sure the router setting have been optimized for performance.
    iOS and OS X: Recommended settings for Wi-Fi routers and access points
    http://support.apple.com/kb/HT4199
    Cheers,
    Jason

  • Properly Define Network Routing Definition for Mac OS X Server

    Hello,
    I have am unable to get my Mac server (10.6.8) VPN to work from outside our firewall (which is a SonicWall TZ-210).  All the necessary ports are opened on the firewall but the Mac server does not appear to be properly configured to route the VPN traffic back through the SonicWall.  I suspect my Network Routing Definitions are wrong but I can not find any other threads that show how these should be defined in this scenario.
    The current Network Routing Definitions are...
    Network Address = my public IP
    Network Mask = my public network mask
    Network Type = Public
    Network Address = 192.168.1.0
    Network Mask = 255.255.255.0
    Network Type = Private
    I have followed this article for the most part.
    http://www.maclive.net/sid/132
    I greatly appreciate the assistance!
    Best Regards

    Rohin Hattiangadi wrote:
    Hi,
    We lost our Verizon DSL Service for 10 days due to flooding caused by hurricane Sandy in NYC.
    All our DNS, Web, and email run on our server and we were lost to the world for those 10 days!
    We have now upgraded to higher speed Time Warner broadband service for our primary, but still want to retain the Verizon DSL for redundancy.
    Our hope is that if we have any connectivity issues with one, the other will hopefully be functioning and carry us through.
    Not answering what you are asking, but addressing the redundancy issue ...
    If you have a disaster like Sandy, with damage over a wide area, how sure are you that one of your connections will work? If for example the cabling is going through a common duct somewhere, your redundancy could be only theoretical. I know an installation that wanted reliable, disaster-proof communications, and paid for three services - and was offline when a builder a couple of miles up the road put his digger (back hoe?) through the shared pipe. Unless you can get guaranteed separation of service, it is not worth the extra cost and effort. Consider instead moving your server to a data centre, where they will already have addressed the issue, and your total cost may be no greater.

  • The wifi at my school isn't very good. And I can't send iMessages through it. It works for some apps like score center and my radar app, but doesn't work for other apps like clash of clans and iMessage. How can I get it to work on that  wifi network

    The wifi at my school isn't very good. And I can't send iMessages through it. It works for some apps like score center and my radar app, but doesn't work for other apps like clash of clans and iMessage. How can I get it to work on my school wifi. I have an iPhone 4S on AT&T and iOS 7.04

    In a roaming network, your "main" router is the device that would require port mapping/forwarding to be configured in order to access the IP camera from the Internet. This router is also the one that would be provide the private IP address for the camera which you will want to be a static one.
    So as you described your network, the IP cameras should be getting an IP address or you assigned it a static one and this is the address that you would enter in the Private IP address (or equivalent depending on the router used) field when setting up port mapping.
    If you are not able to access this camera from the local network, then this should be troubleshot first.

  • HT4259 I have been trying for hours to extend my Extreme Gen 5 network with an Express Gen 2.  But no matter what I do or try, it doesn't work.  What does happen is my internet gets block somehow when the Express looks like it's set up and 'green' - no in

    I have been trying for hours to extend my Extreme Gen 5 network with an Express Gen 2.  But no matter what I do or try, it doesn't work.  What does happen is my internet gets blocked somehow when the Express is online and looks like it's set up perfect and 'green' - but no internet connection for anything even though the Extreme is green and the modem is good.  Once I disconnect the Express, everything is good again.
    I've tried LAN, WAN, though a switch, direct connect, Extreme set to Extend the network, the Express set to be an extension.  Most of the time I get an error trying to update the Express.  But when it seems to be set up perfect, the entire house can't get to the internet.  Just when it looks right, it is so wrong.
    If anyone can give me exact steps (e.g., "...from the Base Station menu, select the Restore Default Setting option" vice "...just restore the defaults..."), I would greatly appreciate it.  I'm left to the conclusion that the Express is faulty.  I've been using Airport Utility 6.2 from Mountain Lion on one computer and Airport Utility 5.6.1 from Snow Leopard on another computer (the latter give more control while the former just want you to 'forget' the Express).

    I finally got it working.  I was trying to set it up ethernet.  My biggest mistake was when the new Express came on, I did not select 'Continue' - I went straight to manual thinking that I would get the most setup options in manual mode.  So everything I initially tried always resulted in 'wireless'.  Even when I would update or restore default settings, the Express would not completely restart. Or sometimes I would get an error. So most of the time I had to unplug it.  So when it came back up, none of my changes were retained. But there were a lot of times when everything was green and appeared to be fine. But anytime the ethernet cable was plugged in, no more internet.
    So here's the weird part.  When I finally tried 'continue' (vice manual), I would get 4 options.  One would be 'ethernet' extended.  So I would select it, it gave me green lights, all looked good, and still the same problem.  This is when I got frustrated.  I thought I had exhausted all possible combinations.
    But somehow when trying continue again after another restore, I only got 3 options.  One was the same ethernet extended option (can't remember what the missing 4th one was).  And this time it worked - it gave me the big green circle with the checkmark saying it was successful.  I don't know what I did different, but I know now that it won't work if 4 options come up to choose from.  It will work if only 3 options come up.  And success if only verified by the big checkmark.  Had anyone anywhere said the checkmark declaring success is validation, then maybe I wouldn't have gone down so many rabbit holes thinking it should have been successful.
    As for which Airport Utility I prefer, 6.2 looks nice, but it would just ignore the Express and would want me to 'forget' it and would not let me edit it.  Airport Utility 5.6.1 was the one that I ended up using the most and finally had success with.  It still strikes me as odd that there is no manually way to pick ethernet, it can only be choosen following a 'restore defaults', and only from the 3-option list (the 4-option list had the same ethernet choice, but it no worky).
    Thanks for the response.  I really do appreciate it.
    Aiport Extreme Gen5 - internet access and router
    Airport Express Gen2 - connected via ethernet, extending my wireless
    - configured while connect directly to the Extreme, but now on a switch (16-port hub)
    Using Airport 5.6.1
    1) Restore Defaults from Base Station menu
    2) Following restart, Select Continue
    3) Of the 3 option presented, select 'ethernet.... extend network...'
      - if 4 options are present, may not work
    4) Wait for the green circle with the big white checkmark.
    5) Connected Express to the switch where a cable went to other end of house - works.
    Dead-zone went from 2mbps to 24mbps.
    I probably spent 4 hours chasing my tail in anger.  The correct way took about 5 minutes total.
    Thanks again.

  • Using Office 2013 group policy template to define Trusted Locations and Template Locations doesn't work

    User Configuration/Policies/Administrative Templates
    - Using Office 2013 group policy template to define Trusted Locations and Template Locations doesn't work
    Microsoft Word 2013/Word Options/Security/Trust Center/Trusted Locations
    - Allow Trusted Locations on the network: 
    Enabled 
    - Trusted Location #1: 
    Enabled 
    Path:  //server/sharedfoldername   [Edit:  Path:
    \\server\sharedfoldername]
    Date: June 10, 2013
    Description: Trusted Location
    Allow sub folders: Enabled
    The policy appears to apply to the client correctly by adding the following registry key and values:
    HKEY_CURRENT_USER\Software\Policies\Microsoft\office\15.0\word\security\trusted locations\location1
    allowsubfolders: 1
    date: June 10, 2013
    Description: Trusted Location
    Path:  //server/sharedfoldername  [Edit: Path: 
    \\server\sharedfoldername]
    However, when you open Word Options/Trust Centre/Trust Centre Settings…/Trusted Locations
    There are no trusted locations listed under ‘Policy Locations’
    I have tried setting similar settings for setting the Shared Templates folder location and just like the trusted locations policy, the registry keys are created properly in HKEY_CURRENT_USER\Software\Policies however word doesn’t
    seem to recognize these either.
    This used to work flawlessly using the administrative templates for Word 2007 and 2010. Has anyone been able to get these policies to apply successfully, or know why office doesn’t recognize these settings from the Policies registry
    Key?

    This would have been an easy solution to the issue.  Unfortunately it isn't the problem.  This question was originally posted on another Microsoft site and
    was transferred here and when it was transferred the path's changed from the original post: 
    \\server\sharedfodlername to //server/sharedfoldername.  (I will edit the question to show up as it did in the original post) Not sure how that happened.  This
    is still an issue that I haven't been able to get working correctly.
    As it turns out the 'New from Template' interface Word 2013 has developed is very bulky with large thumbnails and is not very customizable nor practical for an office
    that has a large number of templates.   Because I am unsatisfied with the display and performance of the 'New' template chooser I sought after a solution to change the way word creates a document from a template in another thread: 
    http://answers.microsoft.com/en-us/office/forum/office_2013_release-word/how-can-you-change-the-display-of-templates-in/d49194b9-a6b4-4768-8502-7d7b50e9dd65 working through this issue with Jay we were able to develop
    some VB script with handles a very large number of templates in a list view and it works much faster than the built-in Word interface.  The above thread is how I've worked around trying to define a shared template location and I am quite happy with it.

  • How to Open Ports for HP Printers for all computers within the network (router)

    Hi,
    I have the EA6700 router and a few HP printers and Multi purpose printers/scanner/fax ...
    When installing the print drivers, they are ok.  Sending to printers are not a problem.  However, the problem comes with scanning.
    The HP Software ask to open a port for it...     How do I do that?   I checked, it seems other computers are affected by it too after changing to this new router.
    I read that it can be done on the "App and gaming" section at the Security page.  Do I go to the port forwarding section?   But it only forward to one computer.  that doesn't work...    
     I'd like to open a port and a lot of other IPs can print and scan from it.
    Thanks

    Ports are not needed to be opened on the LAN side of the router for Printers and Scanners. I recommed that tiy contact hp for help and information regarding setup and configuration of those devices. Also the addition of a external Gb network switch for these devices is recommended as well. Would help eliminate any un-necessary router configuration or processing. 

Maybe you are looking for

  • Error message in reports6.0

    I installed Forms and Reports 6.0 runtime on the end-user's desktop. When the user tried to run the report an error message was generated which looked like: REP- 0108: File "rwbdexpq" not found. The alert has an OK and Help buttons. When the user cli

  • How do i print the current view on a pdf file

    How do i print a current view on a pdf file i am looking at,  i dont want to print the current page i want to zoom in and print that zoom.

  • SQL Server to Oracle port

    Hi, I am investigating the feasability of porting an application to Oracle that currently uses SQL Server as the back end database. To that end I have installed Oracle XE and I have a several questions. First, I guess because this is a demo, I cannot

  • Roles in KM EP

    Hello, I have an ask regarding roles in SAP KM. I want to set documents with specific criterias (moduls of SAP, project phases, document type, sector, ...). In my company there are different roles: consultant, developer, manager... Every role wants a

  • Installing Windows 8 using WDS on devices that use UEFI BIOS

    Hi all, sorry for the word wall. I am currently planning a deployment of Windows 8.1 Upgrade 1 on Toshiba Z10T's which I will be deploying using WDS, which is running on Windows Server 2012 R2. The Toshiba Z10T device in question is quite handy as it