Date: Mon, 19 Mar 2007 21:16:35 +0300 From: banshee <root@vault13.org> To: freebsd-current@freebsd.org Subject: Re: rc.conf: tcp_drop_synfin option Message-ID: <20070319181635.GE1057@vault.net.vault13.org> In-Reply-To: <a31046fc0703190451i70442035q90e0a2eb0c98e6c3@mail.gmail.com> References: <20070318152101.GA70619@vault13.org> <a31046fc0703190248g7b8ba445g7ef5fb282823883c@mail.gmail.com> <20070319112333.GA832@vault.net.vault13.org> <a31046fc0703190451i70442035q90e0a2eb0c98e6c3@mail.gmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
--xJK8B5Wah2CMJs8h Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: quoted-printable No, in that case, it will sysctl will turn on SYN+FIN drop, but if = we us e cut -d ' ' -f 2, it will return 0 (by default at start up time this sysct= l var=3D0) and print error msg. if you use -f 4, then it will check, that S= YN+FIN funct ion is turned on, no meter how. On Mon, Mar 19, 2007 at 02:51:10PM +0300, pluknet wrote: > On 19/03/07, banshee <root@vault13.org> wrote: > >On Mon, Mar 19, 2007 at 12:48:01PM +0300, pluknet wrote: > >> Hi. > >> > >> On 18/03/07, banshee <root@vault13.org> wrote: > >> > > >> > Hello everyone! > >> > > >> > I have an tcp_drop_synfin=3D"yes" option in my rc.conf, but it > >> > doesn't work correct. Here is the dmesg -a part: > >> > > >> > [...] > >> > Additional routing options: > >> > ignore ICMP redirect=3D3DYES > >> > log ICMP redirect=3D3DYES > >> > drop SYN+FIN packets=3D3DYES > >> > sysctl: > >> > unknown oid 'net.inet.tcp.drop_synfin' > >> > [...] > >> > > >> > I've been thinking about making a patch for it=20 > >(/etc/rc.d/routing, > >> > lines 22-127), but i just didn't find something in `sysctl -a` > >> > list that can be used. If this option removed, then may be the > >> > lines 124-125 in /etc/rc.d/routing should be changed (somethi= ng=20 > >as > >> > in attach)? I'm interested in making patch for it :-) > >> > >> Didn't you forget to add the TCP_DROP_SYNFIN option in your kernel=20 > >config? > >> > >> > Best regards, banshee, vault13.org... > >> > >> pluknet > > > > Ups... No, I didn't forget to include it, i've just compiled the= =20 > > wrong kernel :-) > > Anyway, i've made some changes to routing file, just to see, is= =20 > > this sysctl var set correctly (i know, the code is ugly). >=20 > >From attach: > - echo -n ' drop SYN+FIN packets=3DYES' > - sysctl net.inet.tcp.drop_synfin=3D1 >/dev/null > + if [ "`sysctl net.inet.tcp.drop_synfin=3D1 | cut -d ' ' -f 4`"=20 > \ > + =3D "1" ]; then >=20 > Perhaps it would be more careful to make a so-called "const" check: > - echo -n ' drop SYN+FIN packets=3DYES' > sysctl net.inet.tcp.drop_synfin=3D1 >/dev/null > + if [ "`sysctl net.inet.tcp.drop_synfin | cut -d ' ' -f 2`" \ > + =3D "1" ]; then >=20 > > > pluknet >=20 > ps > sorry for my English > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" --=20 Contra vim mortis, non est medicaments... --xJK8B5Wah2CMJs8h Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iQIVAwUBRf7TgYklF6acR4MmAQIWnA//VNYSEJxbYo9wot48T6gW2AH72jMovHyP qE8zO8+vYDwIO4pZa+LpQZJ0XLls9HhErCnqNa3QTClz7+FaooZMBtIFQ+6WJPEs JC6ppvgd1IEKxi0htSAr/eep2OfkglGWEmBh/0rwxGxNGizENq6w+/TNIIl0Om94 wmbxgWdwmM5HF6N5D6LxHTFIX29GejOgBUGb1+cj+diQBO/tGaX5ceON8AE0JbOP uRpU/Rr/JF8F98OEhVAgtJL0MftgHJ7yEnJd70kS3Wvt3bxlYAk9ped9+6w5jsDC FTBK8NdbuooHzLMFwY8YVLAbdUhFwZX/Pq3BtGQfbtXxDz62h29fYge51cDYzB+W Z0b091wY52bHIiNyZDXkg0pJtOqacWgvOTYEZgfPM37Z/7LMRDTG4LZyDo7GLWPJ uZbHDbpZY+sAazQjWcweacQoSnV75kMBvSOJIYTQaHahzQaAvkHSedyH71DsRxhs p2rGk03pSWyUdEmzYtfvwsIJspXh1L34IBy1w/xweYCYy0zc68zFlHIo86SLLWqJ IJynlyEgaIjGTjPVDSejZGvvS5qMuRe1nHzkP7Kh72ZZZQxsIerh6Ky//vOGBkFs NbjQKGO34DpptKmhGw+lE10sJ/GcC6J8NTbIVp543sfxZ76+odXz5qSspxJF7OB6 cKokPSZirDA= =MHef -----END PGP SIGNATURE----- --xJK8B5Wah2CMJs8h--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20070319181635.GE1057>