Displaying 20 results from an estimated 49 matches for "alteons".
Did you mean:
alteon
2006 Nov 21
2
Handle Options Method
Hi,
I have an Alteon in test (a sip/rtp load balancer).
This Alteon sends to the asterisk box a "SIP OPTIONS" to know if
asterisk is alive.
However, asterisk sends me a 404 message and not a response like, for
example, a Thomson (200 + SDP)
I wrote a very little script (you can find it at the end of the email)
to send an Options message to asterisk/phones to try.
It works
2004 Feb 21
2
samba as a file server
I currently have samba 3.0.2 working with ldap as a filer
sever Only. My question is how would I get samba working as
file server that would handle 50k users. My main concern is
that I want reliability. I would also like to be able to
build horizantally if needed. I was first thing some type
of cluster connecting to a SAN but I would rather do it like
we do our webservices. We have x
2004 Apr 20
3
[Full-Disclosure] IETF Draft - Fix for TCP vulnerability (fwd)
Forwarded message:
> From full-disclosure-admin@lists.netsys.com Wed Apr 21 11:49:12 2004
> To: full-disclosure@lists.netsys.com
> From: Darren Bounds <dbounds@intrusense.com>
> Subject: [Full-Disclosure] IETF Draft - Fix for TCP vulnerability
> Date: Tue, 20 Apr 2004 18:19:58 -0400
>
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
>
2005 Oct 26
2
Dovecot and loadbalancer
Hi all,
I've 4 servers with dovecot and ldap authentication behind a
loadbalancer (Alteon).
To connect to dovecot, client need to use a vip of the loadbalancer.
To connect to the ldap server, dovecot need to use the loadbalancer
cause there are several ldap server.
The loadbalancer close a connection without activity during 30mn
Dovecot lauch several authentication process who have
2007 Apr 18
0
[Bridge] My hotmail login issue is fixed!!
Hi All,
Today is a great day. My hotmail login error is fixed.
Following Peter's advice, I used e1000 card, don't change any MTU , the
hotmail login error went away! It is MTU issue, for VLAN tag traffice
going through the bridge, the NICs in the bridge need support VLAN tag,
e100/e1000 card can.
Thanks to Peter, Stephen Hemminger, and All !
So far I know Intel e100/e1000 card can
2009 Aug 20
0
Looking for Remote Systems Administration Work
Hi Everyone,
Im usman from Pakistan Im looking for remote systems administration related work full time or part time or per project basis.
I have worked for more than 6 years in Internet services providers/ISPs
as Sr. Systems Engineer, Systems Admin and Network Engineer.
Im using Linux since Slackware 8 and Redhat 6.x, have worked in many
Linux distributions Redhat, Fedora, Slackware,
2003 Oct 21
2
hardware crypto and SSL?
Is anyone successfully using some sort of hardware crypto solution to
combat the overhead of SSL in http transactions? I'd love to hear
anything good or bad about this.
-Bill
--
-=| Bill Swingle - <unfurl@(dub.net|freebsd.org)>
-=| Every message PGP signed
-=| PGP Fingerprint: C1E3 49D1 EFC9 3EE0 EA6E 6414 5200 1C95 8E09 0223
-=| "Computers are useless. They can only give you
2014 May 08
2
[PATCH] net: get rid of SET_ETHTOOL_OPS
Dave Miller mentioned he'd like to see SET_ETHTOOL_OPS gone.
This does that.
Compile tested only, but I'd seriously wonder if this broke anything.
Suggested-by: Dave Miller <davem at davemloft.net>
Signed-off-by: Wilfried Klaebe <w-lkml at lebenslange-mailadresse.de>
---
Applies against v3.15-rc4.
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_ethtool.c
2014 May 08
2
[PATCH] net: get rid of SET_ETHTOOL_OPS
Dave Miller mentioned he'd like to see SET_ETHTOOL_OPS gone.
This does that.
Compile tested only, but I'd seriously wonder if this broke anything.
Suggested-by: Dave Miller <davem at davemloft.net>
Signed-off-by: Wilfried Klaebe <w-lkml at lebenslange-mailadresse.de>
---
Applies against v3.15-rc4.
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_ethtool.c
2014 May 11
7
[PATCH] [resend] net: get rid of SET_ETHTOOL_OPS
net: get rid of SET_ETHTOOL_OPS
Dave Miller mentioned he'd like to see SET_ETHTOOL_OPS gone.
This does that.
Mostly done via coccinelle script:
@@
struct ethtool_ops *ops;
struct net_device *dev;
@@
- SET_ETHTOOL_OPS(dev, ops);
+ dev->ethtool_ops = ops;
Compile tested only, but I'd seriously wonder if this broke anything.
Suggested-by: Dave Miller <davem at
2014 May 11
7
[PATCH] [resend] net: get rid of SET_ETHTOOL_OPS
net: get rid of SET_ETHTOOL_OPS
Dave Miller mentioned he'd like to see SET_ETHTOOL_OPS gone.
This does that.
Mostly done via coccinelle script:
@@
struct ethtool_ops *ops;
struct net_device *dev;
@@
- SET_ETHTOOL_OPS(dev, ops);
+ dev->ethtool_ops = ops;
Compile tested only, but I'd seriously wonder if this broke anything.
Suggested-by: Dave Miller <davem at
2014 May 11
7
[PATCH] [resend] net: get rid of SET_ETHTOOL_OPS
net: get rid of SET_ETHTOOL_OPS
Dave Miller mentioned he'd like to see SET_ETHTOOL_OPS gone.
This does that.
Mostly done via coccinelle script:
@@
struct ethtool_ops *ops;
struct net_device *dev;
@@
- SET_ETHTOOL_OPS(dev, ops);
+ dev->ethtool_ops = ops;
Compile tested only, but I'd seriously wonder if this broke anything.
Suggested-by: Dave Miller <davem at
2014 May 08
0
[PATCH] net: get rid of SET_ETHTOOL_OPS
I think that it may be appropriate to submit this patch for linux-next
instead of 3.15-rc4...
On Thu, May 8, 2014 at 1:53 PM, Wilfried Klaebe
<w-lkml at lebenslange-mailadresse.de> wrote:
> Dave Miller mentioned he'd like to see SET_ETHTOOL_OPS gone.
> This does that.
>
> Compile tested only, but I'd seriously wonder if this broke anything.
>
> Suggested-by: Dave
2014 May 11
0
[PATCH] [resend] net: get rid of SET_ETHTOOL_OPS
SET_ETHTOOL_OPS is equivalent to :
#define SET_ETHTOOL_OPS(netdev,ops) \
( (netdev)->ethtool_ops = (ops) )
how it makes difference removing this code and replacing with the
code mentioned ?
On Sun, May 11, 2014 at 5:42 AM, Wilfried Klaebe
<w-lkml at lebenslange-mailadresse.de> wrote:
> net: get rid of SET_ETHTOOL_OPS
>
> Dave Miller mentioned he'd like to see
2014 May 11
0
[PATCH] [resend] net: get rid of SET_ETHTOOL_OPS
SET_ETHTOOL_OPS is equivalent to :
#define SET_ETHTOOL_OPS(netdev,ops) \
( (netdev)->ethtool_ops = (ops) )
how it makes difference removing this code and replacing with the
code mentioned ?
On Sun, May 11, 2014 at 5:42 AM, Wilfried Klaebe
<w-lkml at lebenslange-mailadresse.de> wrote:
> net: get rid of SET_ETHTOOL_OPS
>
> Dave Miller mentioned he'd like to see
2005 Apr 24
8
losing NFS connection
Hello there!
Perhaps this is a little off-topic, but I notice this only on the Centos
box.
I'm running Centos 4 on an AMD64 which has the following entries in the
fstab to connect to NFS shares on a Fedora3 box:
192.168.1.12:/home/angelo/ /home/angelo/NFS_share1 nfs
rw,addr=192.168.1.12 0 0
192.168.1.12:/home/angelo/data /home/angelo/NFS_share2 nfs
rw,addr=192.168.1.12 0 0
2009 Apr 08
1
watchdog timeout
Hello
I have some problems with 3Com nics, after a upgrade from 5.5-STABLE to
6.4-STABLE.
This machine has two 3com nics (one is LAN other is WAN) and i see too much
"watchdog timeout" on both cards.
This on/off up/down on cards, affect the interrupt to clients that are
downloading from apache web server, especially on large files.
--------------------------------------------
2008 Aug 08
1
Freebsd 7.0-RELEASE-p3 panics
Hello,
I've been having spurrious crash troubles with this box a while now
and I haven't been able to figure out why. I've ran a couple memtest
passes on it and it didn't pick up anything. Here's a backtrace I've
been able to obtain. The kernel config is at the end. It's the generic
kernel with ULE. I'm following chapter 11 of the developers' handbook,
so if
2008 Sep 30
1
wpi driver freeze on boot
I've got a HP dv8000 laptop. Setting up the wpi driver for wireless freezes
the system on boot with the following error:
wpi0 requested unsupported memory range
wpi0: could not allocate memory resource
It lists a pcbi device (pcbi4 i think) and an actual memory range, but since I
have to reboot using kernel.old the /var/run/dmesg.boot is wiped with the
info. Is there anyway to grab the
2019 Nov 26
9
[net-next V3 0/2] drivers: net: virtio_net: implement
This series add two important features. One of them changes the
.ndo_tx_timeout to include an extra parameter to identify the stuck
queue. Many drivers are using a nester loop to identify which queue is
stooped/stucked. This is a redundant work since dev_watchdog is doing
exactly the same thing. This is so interesting for other drivers to in
terms of code optimization.
The second part (second