similar to: [Bridge] BPDU Hello time

Displaying 20 results from an estimated 5000 matches similar to: "[Bridge] BPDU Hello time"

2007 Apr 18
1
[Bridge] STP Explanation (2)
I saw some big mistakes, here's the correct version : -------------------------------------------------------------------- void br_send_config_bpdu(struct net_bridge_port *p, struct bpdu *bpdu) { unsigned char buf[42]; buf[0] = bpdu->bpdu_header.protocol[0]; //0x00 buf[1] = bpdu->bpdu_header.protocol[1]; //0x00 buf[2] = bpdu->bpdu_header.version; //0x02 buf[3] =
2007 Apr 18
0
[Bridge] STP Explanation
Hi, I'm trying to modify the stp kernel files in order to implements the RSTP. I've already modify the bpdu format like this : ------------------------------------------------------------------------------------------------------------------------------------ typedef struct { int topo_change = 0; int proposal = 0; int port_role[2] = {0,0} ; //role du port ?metteur du BPDU
2007 Apr 18
2
[Bridge] RSTP implementation
Hi, I'm a student in a trainning period and I have to implement a RSTP in a embedded Linux. I wonder if someone knows if it exists a version of bridge-utils who can made this or if it's possible to modify my actual version (bridge-utils-1.0.6) to do that and how ? Thanks in advance. PS : sorry for my english it's not my natural language ^^.
2002 Oct 02
1
rsync and schedule task
Greetings, i would like to rsync a client windows with a Linux server and put this in a windows schedule task. So i have generated ssh key with ssh-keygen on the client and sent it to the server.If i launch manually the rsync it's ok: i am not asked the password. But if i plan the task in the task scheduler i am asked the password ! What's wrong ? Thanks Franck
2007 Apr 18
0
[Bridge] Timer problem
Hi all, I try to reduce the time of link break detection for the STP. I want to make a timer who detect a link failure within a few times instead of waiting max age timeout. The problem is that my timer isn't take in account by the bride and i really don't know why, can someone help me ? Here's what I've done : in file br_stp_timer.c : /* called under bridge lock */ static
2003 Sep 03
1
Add a feature : disk and partition cloning
Bonjour, Today, I use rsync for updating some 40 Debian/Linux box, rsync is great. So, now, I'll need to update a whole disk or partition (NTFS) with an image or an other disk or part. (case multiboot system), can'I hope rsync do this task in some day ? rsync algorithm would be great for this task, isn't-it ? I'don't mind how amount of works this feature need, but some
2005 Apr 25
0
Samba 3.0.13 and Novell Client
Hi everybody, I have still olds server (netware 5.1) and linux server. On some cleints, i have a novell cleint (4.91sp1) to access to novell's maps. My linux server is configured as a domain server. Since samba's update to 3.0.13 (3.0.14-1 too), all clients with novell cleint doesn't have the bacth file at the startutp (as thuey can't access to the domain server). Manually, all
2003 Oct 17
0
error message
Hi! I try syslinux on a USB key (/dev/sda1) and i have de error message: syslinux /dev/sda1 Initial byte of fat is not 0xff Cannot initialize 'S:' syslinux: warning: failed to set readonly bit on ldlinux.sys I use syslinux-2.06 Thanks! Franck __________________________________________________ GNU Linux Mandrake 9.1 - KDE 3.1 Optez pour le syst?me qui exploite l'ordinateur et
2005 Mar 07
0
help configuring samba & ldap
Hi I'm using Samba ant a ldap server. Can anyone help me to configure the configuration files ? in my /etc/samba/smb.conf I have : [global] ....... ldap server = 192.168.2.191 192.168.2.192 ldap port = 389 ldap suffix = "dc=exemple,dc=fr" ldap admin dn = "cn=admin,dc=exemple,dc=fr" ldap filter = "(uid=%u)"
2002 Sep 30
1
Password authentication in a script
Greetings, Here is my configuration: a rsync linux server, a rsync windows client. I would like to run a rsync from windows in a .bat file. The problem is that a password prompt is always shown. I have read the archives and the man pages: i have create a rsyncd.secret like this: rsync:thePassword Here is my rsyncd.conf file: [rsync] path=/ uid=nobody gid=nobody auth users=rsync secrets
2007 Apr 18
4
[Bridge] [Patch] [2.6.7] Bridge - Fix BPDU message_age
Fixes message_age field update in config BPDUs. Also checks whether the BPDU message age has exceeded bridge max age before transmitting config BPDUs. Signed-off-by: Kishore A K <KishoreAK@myw.ltindia.com> Index: linux-2.6.7/net/bridge/br_stp.c ============================================================= --- linux-2.6.7/net/bridge/br_stp.c.orig 2004-06-17 20:17:27.000000000 +0530 +++
2007 Apr 18
1
[Bridge] BPDU's not passing through bridge when STP is disabled
I have noticed a change in the linux bridge implementation between 2.1.15 and 2.1.17. Specifically, I do not think BPDU's (generated from another bridge) are passed across the bridge when STP is disabled. I think this relates to the LLC handling of BPDU's directly invoking br_bpdu_rcv. In 2.6.15, the br_handle_frame function would pass a BPDU to the br_handle_frame_finish function
2007 Apr 18
0
[Bridge] [PATCH 2.6] Fix message age in bridge STP config packets
This is a revised version of Kishore's patch to set message age appropriately in STP configuration packets. Signed-off-by: Kishore A K <KishoreAK@myw.ltindia.com> Signed-off-by: Stephen Hemminger <shemminger@osdl.org> diff -Nru a/net/bridge/br_stp.c b/net/bridge/br_stp.c --- a/net/bridge/br_stp.c 2004-06-29 14:45:50 -07:00 +++ b/net/bridge/br_stp.c 2004-06-29 14:45:50 -07:00 @@
2007 Apr 18
1
[Bridge] Google SoC proposal
Hello, I am a student considering participating in Google Summer of Code program. I came across Stephen Hemminger's idea of implementing a RSTP posted on http://developer.osdl.org/dev/soc/ and found it interesting. In attachment there's my proposal, which I just submitted to google. Please share your comments. -- tadeusz andrzej kad?ubowski -------------- next part --------------
2007 Apr 18
1
[Bridge] [PATCH 2.4] Bridge STP message age
This is the 2.4 version which incorporates the observations from Kishore about 2.6. The existing 2.4 code set the age properly, but did not increment correctly for HZ=1000 and could send a stale (expired) configuration. Signed-off-by: Stephen Hemminger <shemminger@osdl.org> diff -Nru a/net/bridge/br_stp.c b/net/bridge/br_stp.c --- a/net/bridge/br_stp.c 2004-06-29 15:30:32 -07:00 +++
2013 Aug 06
0
surprise)))
Once I make up my mind I'm full of indecision.Levant(C) http://studiafasadov.ru/gatherit.php Le titre le plus respectable de la noblesse francaise c-est de descendre immediatement de quelques-uns de ces trente mille hommes casques cuirasses brassardes cuissardes qui sur de grands chevaux bardes de fer foulaient aux pieds huit ou neuf millions d-hommes nus qui sont les ancetres de la nation
2007 Apr 18
1
[Bridge] eth2.100: received packet with own address as source address
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I have a machine running 2.6.18-rc3 with a bridge config that looks like this: cr1:~# brctl show bridge name bridge id STP enabled interfaces vlan100 36b0.0007e90f40c1 yes eth0.100 eth2.100 vlan101 5dc0.0007e90f40c1 yes
2005 Feb 07
2
questions sur R
bonjour, Je suis actuellement en derniere annee d'ecole d'ingenieur en informatique et statistiques et je dois réaliser mon projet de fin d'études sur le logiciel R. En fait, je dois réaliser un scoring sous R puis le meme sous SAS et comparer les resultats. Mon fichier se prete à une regression logistique. J'ai donc utilisé la fonction glm sous R et Catmod sous SAS seumement, je
2013 Sep 09
3
[Bridge] [PATCH 1/1] bridge: fix message_age_timer calculation
This changes the message_age_timer calculation to use the BPDU's max age as opposed to the local bridge's max age. This is in accordance with section 8.6.2.3.2 Step 2 of the 802.1D-1998 sprecification. With the current implementation, when running with very large bridge diameters, convergance will not always occur even if a root bridge is configured to have a longer max age. Tested
2004 Aug 06
2
quelques questions à propos d'icecast et autres outils associés...
bonjour, hello, buenas dias, ça ne fait pas longtemps que je suis sur cette mailing list, J'éspére que quelqu'un parle le français car techniquement je suis pas doué ni en anglais ni en d'autres langues... it isn't a long time i 'm on the mailing list, i hope someone is speaking french, because i don't write very well others languages about technical probléms... no