Questions tagged [routing]

the process by which data packets on communication networks are forwarded into the direction of their ultimate destination by routers.

Modern communication networks are built mostly on the concept of destination routing (although other concepts, such as source routing, do exist). In this concept, the sender of a data packet does not need to know where exactly to find the destination for that packet, all it needs to know is the address of the next router. This router will then decide, based on routing tables and the destination address of the packet, where to send it next (this is called the next hop). This process is repeated until the packet arrives at a router where the destination address is in a directly connected network, and the final router then sends the packet directly to that destination.

Routing decisions are usually based on routing tables, which can be influenced by many factors, such as available links, link quality, routing policies, QOS, etc.

3661 questions
1
vote
1 answer

Load-balancing PPTP connections

I'm trying to load balance two PPTP connections, connected to the same server. I use the following script, but there is no send and receive via PPTP connections. What part am I doing wrong? Are there better ways to acomplish this? I used also…
1
vote
2 answers

Windows static route not working

I have a Server 2008 R2 machine connected to 2 networks with its 2 network cards. LAN 192.168.2.0/24 SAN: 192.168.168.0/24 I have a site-to-site VPN with the following network layout: VPN: 192.168.4.17/29 For some reason whenever my server pings the…
user207539
  • 13
  • 1
  • 1
  • 3
1
vote
1 answer

How did we manage to block connections to our VPS?

For the last week we've been struggling to get connected from inside our network to a VPS where we host some files for users of our product. It's up for everyone else, down for us and not blocked by our firewall. We can ping IP's above it and blow…
Peter Turner
  • 2,178
  • 9
  • 33
  • 45
1
vote
2 answers

LAN routing without vlan tagging?

On my old Allied Telesis router I had a single interface for internal traffic. I had multiple networks talking on this one interface. For example 192.168.2.X was vlan 1-2, and 192.168.3.X was vlan 1-3. This was all achieved without any vlan…
tsjrl
  • 11
  • 1
1
vote
2 answers

Routing to Remote Desktop Gateway on internal network

I have a single physical host that I am using as a virtualization lab and a number of VM's on Hyper-V that are connected to the host via an internal network. I had it working so that the physical host acted as the Remote Desktop Gateway the router…
1
vote
1 answer

How to route traffic only to specific hosts using sshuttle?

I'm currently using sshuttle to access some VPN-restricted resources, the vanilla version of "route everything" works fine but I'd like to know how to use it to route only traffic to those servers. I should mention that I'm not familiar with the…
Samus_
  • 249
  • 3
  • 9
1
vote
1 answer

RRAS together with IPSec possible?

I have a server which basically acts as a router, but also offers some other services. The server has 3 interfaces, one leading to the main LAN and one to a server segment. Both these interfaces have an IPSec policy applied, but some servers on the…
Jeroen Landheer
  • 468
  • 1
  • 6
  • 14
1
vote
1 answer

Cross-VLAN sharing and auto-discovery of selective resources

I have a network with several VLANs that each contain resources or clients with different access rights. For simplicity, let's say I have 3 VLANs: ID 10: Contains privileged clients and private resources only accessibly to these privileged…
Markus A.
  • 419
  • 7
  • 18
1
vote
1 answer

Creating a multi-wan/isp failover router where wan IPs are dynamic on Debian

I'm having an incredibly hard time creating a basic router on Debian which has connections to two ISPs where the ip addresses are dynamic. I don't need bonding, I really just need some way to detect when WAN1 goes down and automatically failover to…
1
vote
0 answers

Routing between L2 isolated ports

I am to deploy some managed switches for FTTB/FTTH and preparing configuration to introduce isolation between customers (by disabling L2 forwarding between client ports or using private VLANs). However this having it's benefits also introduces one…
squirrely
  • 209
  • 3
  • 11
1
vote
1 answer

How to send packets coming from a second router on a particular port back to the router, using iptables not a route

I have a Linux server which runs a particular service listening on a single TCP port. The Linux server connects to the internet using a PPP connection and also acts as router for a local network using an Ethernet connection. I keep a firewall…
zaadeh
  • 161
  • 2
  • 6
1
vote
1 answer

routing instead of VPN

I have a browser-based application deployed on an intranet server at a client's office. They have Wyse thin clients and have recently added Surface tablets for office use. 90% of the time, the users are connecting from within a multi-site company…
kcrumley
  • 249
  • 2
  • 5
  • 8
1
vote
2 answers

OpenVPN client as gateway for other clients

I have OpenVPN network with one server and two clients. When I setup my default route on C1 to go through S (which does have ip forwarding and NATing enabled), everything works as expected. The problem is, that if I point C1 default route to C2,…
atalax
  • 11
  • 1
  • 3
1
vote
1 answer

How to route requests to correct LAN card

I am trying to make a ping request to a 192.168.1.x address on my network, but the request appears to be routing to the wrong LAN card and timing out; I have a VM with 2 LAN cards setup as follows My routing table is Shouldn't I be able to do…
Jason Hyland
  • 923
  • 1
  • 7
  • 10
1
vote
1 answer

Route traffic to some host in Internet via VPN server

I need route traffic to some host in Internet via VPN server. Configuration: Computer: ubuntu-12.04 eth0 - x.x.x.x/24 tun0 - inet addr:10.8.0.6 P-t-P:10.8.0.5 Mask:255.255.255.255 There is OpenVPN server (Amazon): ubuntu-12.04 eth0 - y.y.y.y/24…
mik-mak
  • 11
  • 2