Displaying 20 results from an estimated 2000 matches similar to: "Shaping services and users (2nd time)"
2004 Feb 06
1
ipfw question
Dear All.
I want to use 'not' for 2 addresses (for both) in ipfw2 rule.
The only way that looks like what I need is
# ipfw add count from IP1 to not IP2,IP3
But does this rule indeed makes what I want? Does it count all
packets destined to addresses other then IP2 AND IP3?!
No other syntax works.
For example more logically correct
not IP2 AND not IP3
or even
not { IP2 or IP3 }
are
2006 Jun 09
5
Redirect Host to Host
Hello
I have a PC with 2 IPs publics IP1 in eth0 and IP2 in eth0:0
I want to do a redirection of IP2 to an other public IP IP3 in an other
laptop (other network)
- for all ports : IP2 ---> IP3
- for juste www : IP2:www --> IP3:www
i tried many combination with shorewall-3.0.7-4, but no sucess
no help from google,
Thanks in advance
Laurent
2020 Jul 23
5
Off Topic bash question
I have a simple script:
#!/bin/bash
#
index=0
total=0
names=()
ip=()
while read -r LINE
do
NODENAME=` echo $LINE | cut -f 1 -d ','`
IP=` echo $LINE | cut -f 2 -d ','`
names[index]="$NODENAME"
ip[index]="$IP"
index=`expr index+1`
total=`expr total+1`
done <<< $(cat list.txt)
simple file:
more list.txt
name1,ip1
name2,ip2
name3,ip3
output when
2005 Jun 11
1
problem with ip route and multiple lans
Hi, I have a little problem to setup iproute in my network
It looks like this:
---- ----- ------
R1 R2 R3
---- ----- ------
| | |
| | |
-------------------------------
ETH1 ETH2 ETH3
ETH0 ETH4 -------------> DMZ
------------------------------
|
|
2013 Sep 30
4
strange problem
Hi,
In log I get:
-----------------------------------------------------------
Sep 30 16:19:03 host kernel: Shorewall:FORWARD:REJECT:IN=eth0 OUT=eth0 SRC=ip1 DST=ip2 LEN=48 TOS=0x00 PREC=0x00 TTL=118 ID=27279 DF PROTO=TCP SPT=51501 DPT=25 WINDOW=8192 RES=0x00 SYN URGP=0
----------------------------------------------------------
Even in /etc/shorewall/rules I have
2012 Sep 10
3
How to remove last comma when iterating through hash in erb template
I need to produce a line in a config file in the format x = "ip1,ip2,ip3"
I am using the method below to sort the hash before iterating over it.
However, as you can see there will always be a final comma which breaks the
app that uses this config file. Does anyone know how I could remove the
final comma?
ipv4_bind_addresses = "<% routes.sort_by {|key, v| key}.each do |key,
2015 Oct 27
6
Bind DNS Issues
G'day All,
I'm running up Samba4.2.3 with 4 DCs on Centos7. There are no
changes to the default smb.conf file that gets created at provision/DC
join. "samba-tool drs showrepl" show all DC replicating in and out.
"samba-tool dbcheck" shows no errors.
See below for named.conf.
I'm having two issues.
1) After bind first starts up
2004 Nov 20
2
Same GW for load balancing
Hi
I want to use two dsl (or more) lines to increase my internet bandwidth.
Our dsl lines are dhcp serviced. Both of them provide the same Def GW and different IPs for each ethernet interface (same subnet).
¿Is it possible to balance outgoing traffic "using" the interface as a
criteria? No point on choosing gateway by IP.
¿Could someone give me a clue on how to deal with this?
(first
2011 Apr 15
3
Samba 3.5.8 / Windows error and system errors while mapping network drive on some PC's
Problem: We have a share defined using Samba 3.5.8 on AIX 6.1. Several
people can map a Windows Network Drive to the share and it works fine.
Several other people get Windows errors or system errors when trying to
map a drive to the same share.
Command line errors (from the net use command):
System error 59
or
System error 64
Windows Explorer error:
The specified network name is no
2004 May 21
2
dial an IP address
Anyone written an extension that will take a 12 digit number, convert it to
an IP address so that you can make a sip call to it.
Chris
2005 Nov 24
0
Load Balancing/NAT
Hey, I''m trying to set up a Gentoo box to replace an aging BSD box here.
The BSD box is running packet filter and I have it set up to take all
data and route it to one of six sattelites. I have come up with the
following config, but unfortunately I have no real way to test it short
of switching the satellites over to the new system and prayer.
The setup is:
192.168.252/22 - The LAN
2008 Jan 08
8
Shorewall and LVS-NAT (via fwmark) nat'd machines can't access the outside world directly
Hi guys,
I''m not sure where to post for help on this one, shorewall or lvs, I''ll
start with shorewall (only cause Tom is a gun at this stuff, and is polite
enough to tell me to bugger off to the LVS list if I''m posting in the wrong
one ;)
I have a single box that is my router/firewall/LVS.
Internet -- eth0 - router/firewall - eth1 --- internal lan
|
eth2
2006 Dec 24
1
Question regarding Split Access description
Hi All,
I''m a big user of the LARTC document but am currently stuck with a question
around section 4.2 (http://lartc.org/howto/lartc.rpdb.multiple-links.html)
in relation to "Routing for multiple uplinks/providers".
I''m wanting to do a similar setup to the diagram where I have - lets just
say for the moment - two uplink providers where I want to route over two
2013 Nov 15
2
2 routes & 1 destinations
Hi,
At office, we have I ISPs.
I want to lightly monitor each link latency in order to decide several
routing.
For that, I have only one external server: 1 IP, it's an OVH dedicated
server.
The quick picture is http://s24.postimg.org/n3436z64l/defaul_route.png
Default route is via ISP1.
If OVH-server pings IP1:
- the request will go through ISP1: it's OK
- the reply will go through
2007 Jan 19
2
2.6.17 kernels and equalize patch
Hi
Everybody in the list
I have a situation like this
------ (IP1)
linux |----eth0.40------ |
router | | |
box | (IP2) |------|Client Router ( Destiantion Net DNET)
|----eth0.41------ | | /27 subnet
------
I just want to balance the load of bandwidth per packet based between the
two vlan interfaces to Client Destination network
2020 Jul 23
0
Off Topic bash question
On 23/07/2020 15:46, Jerry Geis wrote:
Hi Jerry,
See below, inline, for some comments.
> I have a simple script:
> #!/bin/bash
> #
> index=0
> total=0
> names=()
> ip=()
> while read -r LINE
> do
> NODENAME=` echo $LINE | cut -f 1 -d ','`
NODENAME=$(cut -d, -f1 <<< $LINE)
Notes: use $( instead of backticks. There's no need to quote the
2006 Mar 28
1
IP route balance problem
Hello
Im having a problem similar to sawar
Here is my configuration
--------------eth1---192.168.1.128---------- -------------192.168.1.1 ISP router 1
| my |
---Eth0---192.168.10.157----| |
| linux |
2006 Mar 26
1
vpn multihoming
Hello all,
I have a linux router with 2 interfaces(eth0 - ISP and
eth1 - LAN). I''ve established a VPN
connection(openvpn) over eth0 with a friend of mine =>
tun0 interface.
I want half of my LAN to have Internet access through
the eth0 interface and the other half through the tun0
interface.
I''ve set up a script like the "load balancing split
access" instructions
2006 Mar 19
0
need help with route tables and policy routing please
Hello folks: I am trying to set up a router machine to handle all my
network connections to the internet and my local network. I have five
interfaces in total, three to ISPs (two adsl and one cable) and two
interfaces to my local network one to a switch and one wireless card.
I have some of the routing working acceptibly but another portion I
cannot get working not matter what I''ve
2007 Jul 05
4
Load Balancing , MSN and SSL
HI All ,
I am running a FC6 box with two internet links with load balance . Every
thing is working fine expect the MSN connection that failed and reconnect
every time and SSL connections . I would link to know if with the nona
howto I could fix that .
I have been tried with no success to redirect that connection only to one
link but its look like do not work . Here my configuration :