-
I'm currently running a Talos cluster on Hezner cloud. They have the concept of floating ips, which I'd like to use for having a fixed outgoing ip address (for whitelisting in other applications). A custom route with the source set to the floating ip should enable this if I'm not mistaken:
However this is not working. Hetzner uses the special 172.31.1.1 as default gateway in it's cloud network. With DHCP it's working and I can see from #4320 this is probably because in dhcp the Many thanks for your help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can add link-scope route by adding a route without a gateway, in your case you need something like I guess: interfaces:
- interface: eth0
addresses:
- a.b.c.d/32
routes:
- gateway: 172.31.1.1
- network: 172.31.1.1/32 |
Beta Was this translation helpful? Give feedback.
You can add link-scope route by adding a route without a gateway, in your case you need something like I guess: