Maintainers: * Daniel Borkmann * Tobias Klauser Major contributors (> 30 commits): * Daniel Borkmann * Emmanuel Roullit * Tobias Klauser * Markus Amend * Christoph Jaeger * Herbert Haas * Minor contributors (<= 30 commits): * Stephen Wadeley * Hideo Hattori * Peter Stuge * Scott Moeller * Jesper Dangaard Brouer * Jaroslav Škarvada * Dennis Gilmore * Dan Horák * Doug Burks * Kartik Mistry * Ulrich Weber * Teguh * Markus Kötter * Jim Binder * Ronald W. Henderson * Stefan Seering * Jon Schipp * Sibir Chakraborty Special thanks to some of our sponsors: * Deutsche Flugsicherung GmbH * ETH Zurich, Communications Systems Group * Max Planck Institute for Human Cognitive and Brain Sciences * Team Cymru Notes: The order of authors with > 30 commits listed here is sorted by contributions from high to low through ``git log --no-merges $@ | grep Author: | \ cut -d: -f2 | cut -d\< -f1 | sort | uniq -c | sort -n -r''. The list of minor contributors is currently unsorted and contains people who have contributed code ``in some way'' (e.g. on the upstream or maintenance repositories), either through Git or email. Note that we have taken over the maintenance and further development of Herbert Haas' mausezahn [ˈmauzəˌtsa:n] utility after he passed away in 2011. There were no Git commit statistics available from the import of his project. The project is currently in a staging area, but will be fully integrated soon. (*) Want to join the core team? Submit enough great patches over a long time, implement what's on the TODO file and show an ongoing, active interest in supporting netsniff-ng. What's in it for you? If you ever come to Switzerland, you get a free beer on Daniel and you can meet some great people involved in this project. ;) 04baaade4f64205e9706b7d43c46db7d'/>
diff options
context:
space:
mode:
authorJulian Anastasov <ja@ssi.bg>2016-07-27 09:56:50 +0300
committerDavid S. Miller <davem@davemloft.net>2016-08-08 15:36:38 -0700
commit0e7bbcc104baaade4f64205e9706b7d43c46db7d (patch)
tree5ff5e163b9e7e221a85df4aab53f58d44606bf97
parent1fe323aa1b2390a0c57fb0b06a782f128d49094c (diff)
neigh: allow admin to set NUD_STALE
Admin should be able to set any state. Currently, this fails when lladdr is not changed and state is changed from NUD_CONNECTED to NUD_STALE: ip neigh add 192.168.8.1 lladdr 00:11:22:33:44:55 nud perm dev wlan0 ip neigh show to 192.168.8.1 192.168.8.1 dev wlan0 lladdr 00:11:22:33:44:55 PERMANENT ip neigh change 192.168.8.1 lladdr 00:11:22:33:44:55 nud stale dev wlan0 ip neigh show to 192.168.8.1 192.168.8.1 dev wlan0 lladdr 00:11:22:33:44:55 PERMANENT Problem may be from 2.1.X days. Signed-off-by: Julian Anastasov <ja@ssi.bg> Reviewed-by: Chunhui He <hchunhui@mail.ustc.edu.cn> Signed-off-by: David S. Miller <davem@davemloft.net>