search for: lan_ip

Displaying 14 results from an estimated 14 matches for "lan_ip".

2018 Jul 20
1
1.1pre16 multiple address behavior
...tly upgraded my Windows 10 installation from 1.1pre15 to 1.1pre16 and it appears that hosts with multiple address are behaving differently. My host file looks like this: -----BEGIN RSA PUBLIC KEY----- ... -----END RSA PUBLIC KEY----- Ed25519PublicKey = ... Subnet = ... Address = ...LAN_IP... Address = ...WAN_IP... In 1.1pre15 eventually my machine would establish a meta-connection to the WAN IP, but after the upgrade my log looks like this: Timeout while connecting to remoteness (LAN_IP port 655) Closing connection with remoteness (LAN_IP port 655) Could not set up a meta...
2004 Jul 14
1
tcng/tc setup
...eth ----- Start long probably incorrect tcng code (I have left out the ingress code I had, because it didn''t work at all, and I didn''t understand any of it) #define INTERNET eth0 #define LAN eth1 #define DMZ eth2 #define INTERNET_IP 0.0.0.0/0 #define DMZ_IP 10.2.1.0/16 #define LAN_IP 10.1.1.0/16 #define maxadsl 600kbps/2 #define highadsl 500kbps/2 #define medadsl 400kbps/2 #define midadsl 300kbps/2 #define lowadsl 200kbps/2 #define intadsl 150kbps/2 #define vloadsl 100kbps/2 #define noadsl 50kbps/2 dev INTERNET { $meter = trTCM( cir 128kbps, cbs 10kB, pir 200kbps, pbs 10 kB...
2001 Mar 20
1
interfaces option question
...han one interface in the 'interfaces' config option? I have two interfaces, one that does nmbd and smbd to my LAN, and another that will browse-sync with a remote samba machine with the same configuration of two network cards. I'm looking to do something like this: interfaces = eth1 $LAN_IP/24 127.0.0.1/24 eth0 $INET_IP/24 bind interfaces only = yes Thanks, Mchael Blinn
2005 Feb 09
2
load balancing between two dsl links
...; squid_box="10.59.2.3" lan_net="10.59.2.0/24" $ECHO 1 > /proc/sys/net/ipv4/ip_forward $IPTABLES -t nat -A PREROUTING -i $lanif -s ! $squid_box -p tcp --dport 80 -j DNAT --to $squid_box:3128 $IPTABLES -t nat -A POSTROUTING -o $lanif -s $lan_net -d $squid_box -j SNAT --to $lan_ip $IPTABLES -A FORWARD -s $lan_net -d $squid_box -i $lanif -o $lanif -p tcp --dport 3128 -j ACCEPT $IPTABLES -t nat -A POSTROUTING -j MASQUERADE Regards, ro0ot _______________________________________________ LARTC mailing list / LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/mailman/listinfo/lart...
2005 Feb 14
6
NAT over 2 providers (not load balance)
Hi guys, Can you take a look at this? :) +-----------+ | | eth1-|- | | -|-eth0---LAN--- | | eth2-|- | | | +-----------+ - eth0 is connected to the LAN having the IP=LAN_IP eth1 is connected to the first ISP having IP=ISP_IP_1 and GW=ISP_GW_1 eth2 is connected to the second ISP having IP=ISP_IP_2 and GW=ISP_GW_2 I need to selectively SNAT clients in the LAN to ISP_IP_1 or ISP_IP_2. That would be something like: $IPTABLES -t nat -A POSTROUTING -s 172.17.31.5 -j SNA...
2013 Jan 04
4
CentOS 6.3 as Firewall/Router
...;$ROUTER" # # Sun Apr 3 09:11:44 EDT 2005 ############################## # IPTABLES="/sbin/iptables" INET_IFACE="eth0" OSPREY="192.168.252.3" INET_IP=`ifconfig eth0 | grep 'inet addr' | awk -F":" '{print $2}' | sed 's/ Bcast//'` LAN_IP="192.168.252.5" DHCP="yes" DHCP_SERVER=`grep dhcp-server-identifier /var/lib/dhclient/dhclient-eth0.leases \ | head -1 | awk '{print $NF}' | sed 's/;//g'` LAN_IP_RANGE="192.168.252.0/24" LAN_BROADCAST_ADDRESS="192.168.252.255" LAN_IFACE="...
2019 Jan 27
3
Samba and UFW
Good Morning, Using Linux Mint 19.1 I have configured UFW to allow Samba. I see that ports 135 tcp, 137 udp, 138 udp , 139 tcp and 445 tcp are all set properly. The problem is that with UFW enabled I cannot connect to my Windows 8.1 PC. Error "Unable to mount location - failed to retrieve list from server, file or directory does not exist". With UFW disabled I can connect and browse
2004 Feb 06
3
Multiple uplinks - load balancing
...NO-HOWTO to use more than one independent Internet connection" document. I patched my 2.4.24 kernel with patches, described in this document. My configuration is: --------------------------------------------------------------- #!/bin/bash #------------------------------ LAN_IF - LAN interface LAN_IP - LAN IP LAN_NET - LAN network/mask #------------------------------ INET1_IF - external interface no. 1 INET1_IP - external IP no. 1 INET1_NET - external network/mask no. 1 INET1_GW - remote gateway no. 1 #------------------------------ INET2_IF - external interface no. 2 INET2_IP - external IP no....
2006 Jul 08
0
routing multiple paths to inet
I have a router used as a gateway for a small lan, I want half the machines to use one IP and half to use another IP when using SNAT to reach the internet. Both IPs are from the same ISP, same account, just different IPs. Heres what I''m trying: ------------------ LAN_IP="10.0.0.1" LAN_IFACE="eth0" EXT_IP_1="x.y.246.186" EXT_IFACE_1="eth1" EXT_IP_2="x.y.246.187" EXT_IFACE_2="eth2" INET_GW="x.y.246.254" LAN_NET="10.0.0.0/16" LAN_NET_SERVERS="10.0.0.0/24" ip route flush table m...
2020 Aug 04
0
[Bug 1448] New: SNAT/DNAT/Masquerading not working for UDPLite protocol
...t are NAT'd as a general IP packet (the server receives a lan ip address). Then I tried to add the following NAT rules but it cannot match to any packet. iptables -I POSTROUTING 1 -tnat -j SNAT -p udplite -o br-wan --to [wan_ip] iptables -I PREROUTING 1 -tnat -j DNAT -p udplite -i br-lan --to [lan_ip] The tool I wrote for testing this behavior is hosted at https://github.com/nicholascw/SLOWProxy/tree/develop/gadgets/udpliteping, which is a simple ping-n-pong sketch. -- You are receiving this mail because: You are watching all bug changes. -------------- next part -------------- An HTML attac...
2005 Dec 27
3
Ingress policing (matching netfilter marks)
...then echo "Aborting: Unable to determine the IP of $nic ... DHCP problem?" exit 1 else echo "$TEMP" fi } #### 1.1 Internet Configuration. INET_IFACE="ppp0" INET_IP=`RetrieveIP $INET_IFACE` #### 1.2 Local Area Network configuration. LAN_IFACE="eth0" LAN_IP=`RetrieveIP $LAN_IFACE` LAN_IP_RANGE="192.168.0.0/24" #### 1.4 Localhost Configuration. LO_IFACE="lo" LO_IP="127.0.0.1" #### 1.5 IPTables Configuration. IPTABLES="/sbin/iptables" #### 1.6 Misc Configuration. #MARK_FORWARD=$[2#00000001] #MARK_PRIORITY=$[2#0...
2004 Dec 19
0
router problem
...ow:(is this correct?) INET_IFACE=eth0 INET_NET=62.85.71.0/28 INET_GW=62.85.71.1 INET_IP=62.85.71.10 INET_BCAST_ADRESS=62.85.71.15 INET_MASK=255.255.255.240 DSL_IFACE=eth2 DSL_NET=81.198.4.0/28 DSL_GW=81.198.4.1 DSL_IP=81.198.7.159 DSL_BCAST_ADRESS=81.198.7.255 DSL_MASK=255.255.252.0 LAN_IFACE=eth1 LAN_IP=10.10.10.0 LAN_NET=10.10.10.0/24 LAN_MASK=255.255.255.0 LAN_BCAST=10.10.10.255 INET_IP1=62.85.71.2 INET_IP2=62.85.71.3 INET_IP3=62.85.71.4 INET_IP4=62.85.71.5 INET_IP5=62.85.71.6 INET_IP6=62.85.71.7 INET_IP7=62.85.71.8 INET_IP8=62.85.71.9 INET_IP9=62.85.71.11 LAN_IP1=10.10.10.11/32 LAN_IP2=10.10.10...
2004 Nov 19
14
FAQ 32
What changes would I need to make if there is a 4th interface that is going to a DMZ Thanks Gene
2005 Sep 21
5
IP Tables on a bridge
Not normally a question for this group, but you guys are very bridge/router/firewall savvy, so I thought I''d toss it here. I have a bridge. On one side of the bridge is that fancy thing called the Internet. On the other side is my LAN. The bridge is the obvious demarcation line and a good place to put a firewall. Now, I have all my iptables stuff planned out, EXCEPT for nat. The