summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2005-10-12Correct function name in warning.Claudio Jeker
2005-10-12Revert last commit. That file was not intended to be commited.Claudio Jeker
2005-10-12Fix the flooding procedure. Violate the RFC else many BAD_LS_REQ events andClaudio Jeker
session drops happend while booting up. If a router is conected to a other router over two different interface one session will be unable to load until the other one is in state FULL. ospfd no longer issues a BAD_LS_REQ event if the LSA is equal to the one in table but if the sent lsa is older a BAD_LS_REQ event is still issued. OK norby@
2005-10-12Fix a massive memory leak in the RDE. ospfd leaked every ls update unlessClaudio Jeker
lsa_add() was called (which is just one specific case of many) OK norby@
2005-10-12If router is DR or BDR join the AllDRouter list (and leave it if otherwise).Claudio Jeker
OK norby@
2005-10-12Minor cleanup. Use iface->state & IF_STA_DRORBDR as used in other placesClaudio Jeker
instead of iface->state != (IF_STA_DR | IF_STA_BACKUP). OK norby@
2005-10-12In one special condition ospfd sent out ls updates without updating theClaudio Jeker
checksum. Because of the invalid checksum the other routers dropped it and so the update was retransmitted over and over again. Now we update the checksum in lsa_merge() after bumping the sequence number instead of hoping that lsa_timeout() -> lsa_refresh() will do it for us. OK norby@
2005-10-11fix "node add"Reyk Floeter
2005-10-10less verbose listing of librariesMarc Espie
2005-10-10several paths lead to has_new_sig, cache the result.Marc Espie
2005-10-10We should do this, placeholder.Marc Espie
2005-10-10allows for tempfiles.Marc Espie
2005-10-10Xref package(5)Marc Espie
2005-10-10Display an error message if no packages are available in the PKG_PATH.Marc Espie
Quote nlist command, if we invoke it accidentally in a directory with *.tgz present.
2005-10-08Add a best effort mpls decoder. From Jason L. Wright.Can Erkin Acar
Since the encapsulated protocol information is not always available in the MPLS tag stack. The decoder attempts to guess the protocol. ok brad@
2005-10-08Check IP version when decoding v4 and v6 packets.Can Erkin Acar
From Jason Wright via PR-4531.
2005-10-07move IAPP definitions to separate header fileReyk Floeter
2005-10-07wonky capitalisation;Jason McIntyre
from bsd rutgers edu
2005-10-07spacingReyk Floeter
2005-10-07give an example email address - this is important as we need to showJason McIntyre
angle brackets are necessary; better wording; from ray lai, who remembered to prod bob and i again when we forgot; ok beck@ in a slightly different incarnation;
2005-10-07KNFMarco Pfatschbacher
2005-10-07Add stp as supported protocol.Marco Pfatschbacher
While there remove reference to /etc/protocols for ether proto. Instead enumerate all supported ethernet protocols. OK jmc@ a while ago.
2005-10-06I should have read the RFC more carefully.Claudio Jeker
...if only one of the instances has its LS age field set to MaxAge The important part is "only one", so check if both LSA are at MaxAge and in that case return 0 -- the LSAs are identical. This fixes a super nasty doom loop between two ospfd sending each other LSA updates at an incredible speed. Tested and OK norby@
2005-10-05the correct mask sign in table declarations is '&' (not '/').Reyk Floeter
2005-10-03typoMathieu Sauve-Frankel
ok claudio@
2005-10-02pkg_add -u does updates.Marc Espie
noticed by brad@
2005-09-30deploy .An -nosplit; ok jmcJared Yanovich
2005-09-30rewording for clarity;Jason McIntyre
ok reyk@
2005-09-30correct way to display a backslash is `\e' in mdoc;Jason McIntyre
grammar + spelling;
2005-09-30update the BNFReyk Floeter
2005-09-30implement a way to match IEEE 802.11 flooding. this will help to detectReyk Floeter
known DoS attacks, like de-auth flooding against wireless networks. an example is provided in the manual page. "or could you just got for it?", deraadt@
2005-09-30fix;5C the 'number' type, use a maximal value of LONG_MAX instead of 16.Reyk Floeter
2005-09-29Add event rule examplesReyk Floeter
2005-09-29order alphabeticallyReyk Floeter
2005-09-29Change DLT earlier. Fixes the loss of promisc mode when a non-defaultCan Erkin Acar
DLT is specified. looks sane deraadt@
2005-09-29Show the time a neighbor was DOWN instead of counting down fromClaudio Jeker
DEFAULT_NBR_TMOUT. Makes it easy to see since when a peer is dead. OK norby@ some time ago
2005-09-28- use proper function name in log messageMathieu Sauve-Frankel
ok norby@
2005-09-28use more strtonum(); from mkb@crypt.org.ruTheo de Raadt
2005-09-28err()->errx() and KNF; ok djm@Kevin Steves
2005-09-27Fix another case of inconstitent error handling that was missed in theOtto Moerbeek
previous commit. ok moritz@
2005-09-27use xargs -r0 for our build processTheo de Raadt
2005-09-27tweaks from wiz@netbsdJason McIntyre
2005-09-26deal with xargs new behaviour by using -r, okay deraadt@Pedro Martelletto
2005-09-26If setting the filter fails, pass the error back;Otto Moerbeek
ok deraadt@
2005-09-24- add auth_type and auth_keyid to struct ctl_ifaceMathieu Sauve-Frankel
- have ospfctl tell us when we are using authentication with 'show interface' ok claudio@ norby@
2005-09-24Add some code to just build the packing-list even if the package won'tMarc Espie
happen. Use -q and -Q for now, may change.
2005-09-24give it a bit highr priority and exit w/ failure if systcl ever fails; marc@ ↵Michael Shalayeff
henning@ ok some time ago...
2005-09-24pass actual items to prepare_long and check_name so that we can alsoMarc Espie
verify that modes/groups/owners are correct (code to come)
2005-09-24move uname/gname existence check into ArcCheck: Ustar archives deal withMarc Espie
this differently. Namely, use specific variables that default to the numeric value if the uid/gid don't exist in mkheader. Since the entry fields are not filled, ArcCheck gets all it needs for the package check.
2005-09-24Allows FETCH_CMD to replace ftp.Marc Espie
Note that, for simplicity, FETCH_CMD must be a single command with a full path. Use a script if you must.