Questions tagged [routes]

34 questions
1
vote
4 answers

Why is this static routing not working?

I'm trying to develop a DHCP enforcement extension like Microsoft NAP. My trick to block dynamic-IP requesting machines (that don't meet certain policy) is to strip the default gateway (no default gateway) stated in the IP lease and set the lease…
geeko
1
vote
0 answers

Multihomed Windows 2016 Server default route ignoring metrics/preference

I have a host with two NICs, both have internet access but I'm trying to manually set preference of a specific NIC. My interface metrics: PS C:\Users\Administrator\Desktop> Get-NetIPInterface -ConnectionState Connected -InterfaceAlias "Ethernet*" |…
olivervbk
  • 89
  • 6
0
votes
1 answer

OpenVPN Client Shared Network Routes

Currently our OpenVPN Community Edition server (version 2.3.11 running on RHEL) client config files are stored in /etc/openvpn/ccd. We want to control which network routes each user gets depending on what their job title is. For example developers…
KeithJ
  • 1
  • 1
0
votes
1 answer

Enabling Bidirectional traffic over VPN with OpenVPN on AWS

I'm trying to setup an OpenVPN server with Pritunl on AWS, and I'm having trouble getting my AWS nodes to connect to nodes outside the VPC through the VPN. Basically my setup is [ AWS Instance ] -- [ AWS OpenVpn Instance ] -- [ Local OS X Machine…
killachaos
  • 135
  • 3
0
votes
1 answer

How can I get Laravel app routing to work in a sub-folder of a WordPress site?

I've got an existing WordPress site and I need to get a Laravel app to work in a sub-folder called 'api'. This is an nginx site, so .htaccess redirects will not work, and the best solution if it needs a redirect would be a PHP solution as I'm not…
primetimejas
  • 231
  • 2
  • 5
0
votes
0 answers

netstat -r on debian give abnormal output

after looking for stuff with Debian "netstat" and try list stuff with "nestat -r" my main Server out a Long list of unkown Hosts ( mostly hacked IP´s by looking on abuseDB ) here a small example for the Output ( cut ) ild.static.gvt - …
VBnoob
  • 121
  • 1
  • 2
0
votes
2 answers

Routing from one router to another?

I'm trying to route from one basic router to a pfsense box. It's basically so that I can have VPN users on both router aswell as VPN tunnels to test which router performs best. I am also trying to segregate the network with VLANS and the existing…
dannymcc
  • 2,677
  • 10
  • 46
  • 72
0
votes
1 answer

ubuntu-server 2 network devices, 2 isp

Hello I have the following szenario: I have 2 ISPs behind seperate routers, and one web/ssh-server with 2 ethernet cards. I want the webserver to be reachable from both isp. I have forwarderd each router's port 80 to the local ip, but it seems that…
mightyuhu
  • 197
  • 1
  • 4
0
votes
1 answer

Redirecting all www routes to respective non-www routes

I have the current rule for my nginx routes: listen 80; server_name www.domain1.com; rewrite ^/(.*) http://domain1.com/$1 permanent; This works but only for the root path and not other routes. For example, a route like…
TenJack
  • 193
  • 2
  • 7
0
votes
1 answer

Permanent Routes Centos Questions

So with a little help I figured out how to setup these routes and I can set them in rc.local route add -net 208.82.236.0 netmask 255.255.255.0 dev ppp0 metric 1 route add -net 208.82.236.0 netmask 255.255.255.0 dev eth0 metric 10 my question is…
user65053
  • 5
  • 1
0
votes
1 answer

ip routes to specific interface

I am trying to figure out how to get all traffic to 10.8.78.* to connect using interface ppp0 when available how would I properly handle this (centos) and can I fall back on eth0 when pp0 is not up? /sbin/route -n Kernel IP routing table Destination…
user65053
  • 5
  • 1
0
votes
0 answers

How to make interfaces flexible using ip rule so that when any of the NICs when connected to public network can access the internet

I am working on BusyBox v1.31.1. The device has three interfaces eth0,eth1 and eth2. To make all the three interfaces flexible .i.e. to establish internet connectivity via the interface chosen by the user ,three routing tables are designated to all…
0
votes
0 answers

Is it possible to establish outbound traffic without a default gateway entry in main routing table

I have default gateway added in a specific routing table for eth0 interface in /etc/iproute2/rt_tables ,the table name being eth0-rt. However the outbound traffic is not working from the box. The moment the default gateway entry is added to the…
0
votes
0 answers

OpenVPN network on the client side

I have the following configuration. VPS with Windows Server 2019 and with public IP. I have OpenVPN server installed on it and TUN adapter with 10.8.0.1 IP Here my OpenVPN server configuration port 1194 proto tcp dev tun ca "C:\\Program…
0
votes
0 answers

OpenVPN client connect to 2 servers and route between

We are building a VPN network where there is a lot of small vpn-servers connected to each other to form a big network diagram is something like this S on the image is VPN Server C on the image is VPN Client each client is connected to one server…