1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
|
<HTML>
<HEAD>
<TITLE>IPChains - Create and Manipulate ipchains via Perl
</TITLE>
</HEAD>
<BODY>
<!-- INDEX BEGIN -->
<UL>
<LI><A HREF="#NAME">NAME</A>
<LI><A HREF="#SYNOPSIS">SYNOPSIS</A>
<LI><A HREF="#DESCRIPTION">DESCRIPTION</A>
<LI><A HREF="#METHODS">METHODS</A>
<LI><A HREF="#BUGS">BUGS</A>
<LI><A HREF="#AUTHOR">AUTHOR</A>
<LI><A HREF="#COPYRIGHT">COPYRIGHT</A>
</UL>
<!-- INDEX END -->
<HR>
<P>
<H1><A NAME="NAME">NAME
</A></H1>
IPChains - Create and Manipulate ipchains via Perl
<P>
<P>
<HR>
<H1><A NAME="SYNOPSIS">SYNOPSIS
</A></H1>
use IPChains;
<P>
<CODE>$fw</CODE> = IPChains->new(-option => value, ... );
$fw->append('chain');
<P>
<P>
<HR>
<H1><A NAME="DESCRIPTION">DESCRIPTION
</A></H1>
This module acts as an interface to the <CODE>ipchains(8)</CODE> userspace
utility by Paul ``Rusty'' Russell
(http://www.rustcorp.com/linux/ipchains/). It attempts to include all the
functionality of the original code with a simplified user interface via
Perl. In addition, plans for log parsing facilities, an integrated
interface to ipmasqadm, and possibly traffic shaping are slated for up and
coming versions.
<P>
The <CODE>new()</CODE> and <CODE>attribute()</CODE> methods support the
following options:
<P>
<DL>
<DT><STRONG><A NAME="item_Source">Source
</A></STRONG><DD>
Specifies origination address of packet. Appending hostmask to this address
using a / is OK, as well as specifying it separately (see SourceMask).
<P>
<DT><STRONG><A NAME="item_SourceMask">SourceMask
</A></STRONG><DD>
Hostmask for origination address. Can either be in 24 or 255.255.255.0
style.
<P>
<DT><STRONG><A NAME="item_SourcePort">SourcePort
</A></STRONG><DD>
Specific port or port range (use xxx:xxx to denote range), requires
specific protocol specification.
<P>
<DT><STRONG><A NAME="item_Dest">Dest
</A></STRONG><DD>
Specifies destination address of packet. Appending hostmask to this address
using a / is OK, as well as specifying it separately (see DestMask)
<P>
<DT><STRONG><A NAME="item_DestMask">DestMask
</A></STRONG><DD>
Destination address, (see SourceMask).
<P>
<DT><STRONG><A NAME="item_DestPort">DestPort
</A></STRONG><DD>
Destination Port, (see SourcePort).
<P>
<DT><STRONG><A NAME="item_Prot">Prot
</A></STRONG><DD>
Protocol. Can be tcp, udp, icmp, or all. Required for specifying specific
<CODE>port(s).</CODE>
<P>
<DT><STRONG><A NAME="item_ICMP">ICMP
</A></STRONG><DD>
ICMP Name/Code (in place of port when ICMP is specified as protocol).
<P>
Here is a small table of some of the most common ICMP packets:
<P>
<PRE> Number Name Required by
</PRE>
<P>
<PRE> 0 echo-reply ping
3 destination-unreachable Any TCP/UDP traffic.
5 redirect routing if not running
routing daemon
8 echo-request ping
11 time-exceeded traceroute
</PRE>
<P>
<DT><STRONG><A NAME="item_Rule">Rule
</A></STRONG><DD>
Target. Can be ACCEPT, DENY, REJECT, MASQ, REDIRECT, RETURN, or a
user-defined chain. Note: This is case sensitive.
<P>
<DT><STRONG><A NAME="item_Interface">Interface
</A></STRONG><DD>
Specify a specify interface as part of the criteria (ie, eth0, ppp0, etc.).
<P>
<DT><STRONG><A NAME="item_Fragment">Fragment
</A></STRONG><DD>
Rule only refers to second and further fragments of fragmented packets (1
or 0).
<P>
<DT><STRONG><A NAME="item_Bidir">Bidir
</A></STRONG><DD>
Makes criteria effective in both directions (1 or 0).
<P>
<DT><STRONG><A NAME="item_Verbose">Verbose
</A></STRONG><DD>
Set verbose option for setting rules or <CODE>list()</CODE> (1 or 0).
<P>
<DT><STRONG><A NAME="item_Numeric">Numeric
</A></STRONG><DD>
Show output from <CODE>list()</CODE> in numeric format. No DNS lookups,
etc.. (1 or 0).
<P>
<DT><STRONG><A NAME="item_Log">Log
</A></STRONG><DD>
Enable kernel logging (via syslog, kern.info) of matched packets (1 or 0).
<P>
<DT><STRONG><A NAME="item_Output">Output
</A></STRONG><DD>
Copy matching packets to the userspace device (advanced).
<P>
<DT><STRONG><A NAME="item_Mark">Mark
</A></STRONG><DD>
Mark matching packets with specified number (advanced).
<P>
<DT><STRONG><A NAME="item_TOS">TOS
</A></STRONG><DD>
Used for modifying the TOS field in the IP header. Takes 2 args, AND and
XOR masks, (ie, (TOS => [``0x01'', ``0x10''])). This feature is highly
untested.
<P>
The first mask is ANDed with the packet's current TOS, and the second mask
is XORed with it. Use the following table for reference:
<P>
<PRE> TOS Name Value Typical Uses
</PRE>
<P>
<PRE> Minimum Delay 0x01 0x10 ftp, telnet
Maximum Throughput 0x01 0x08 ftp-data
Maximum Reliability 0x01 0x04 snmp
Minimum Cost 0x01 0x02 nntp
</PRE>
<P>
<DT><STRONG><A NAME="item_Exact">Exact
</A></STRONG><DD>
Display exact numbers in byte counters instead of numbers rounded in K's,
M's, or G's (1 or 0).
<P>
<DT><STRONG><A NAME="item_SYN">SYN
</A></STRONG><DD>
Only match TCP packets with the SYN bit set and the ACK and FIN bits
cleared (1 or 0).
<P>
</DL>
<P>
<HR>
<H1><A NAME="METHODS">METHODS
</A></H1>
The following methods are available to you:
<P>
<DL>
<DT><STRONG><A NAME="item_new">new()
</A></STRONG><DD>
<CODE>$fw</CODE> = IPChains->new(option => value, ...) create new fw
object with options
<P>
<DT><STRONG><A NAME="item_attribute">attribute()
</A></STRONG><DD>
$fw->attribute(option, value) to set option to value, OR
<CODE>$value</CODE> = $obj->attribute(option) to get current value of
option.
<P>
<DT><STRONG><A NAME="item_clopts">clopts()
</A></STRONG><DD>
$fw->clopts() clears all option settings (do this before calling methods
like <CODE>list(),</CODE> <CODE>flush(),</CODE> <CODE>delete(),</CODE> etc.
that take only a few specific options).
<P>
<DT><STRONG><A NAME="item_append">append()
</A></STRONG><DD>
$fw->append(chain) appends current rule to end of chain
<P>
<DT><STRONG><A NAME="item_insert">insert()
</A></STRONG><DD>
$fw->insert(chain, rulenum) inserts rule at position rulenum in chain.
If rulenum is omitted 1 is assumed.
<P>
<DT><STRONG><A NAME="item_replace">replace()
</A></STRONG><DD>
$fw->replace(chain, rulenum) replace rule at rulenum in chain with
current rule.
<P>
<DT><STRONG><A NAME="item_delete">delete()
</A></STRONG><DD>
$fw->delete(chain, rulenum) deletes rule rulenum from chain.
<P>
<DT><STRONG><A NAME="item_check">check()
</A></STRONG><DD>
$fw->check(chain) check given packet against chain for testing.
<P>
<DT><STRONG><A NAME="item_flush">flush()
</A></STRONG><DD>
$fw->flush(chain) deletes all rules from chain.
<P>
<DT><STRONG><A NAME="item_list">list()
</A></STRONG><DD>
$fw->list(chain) lists all rules defined for chain.
<P>
<DT><STRONG><A NAME="item_zero">zero()
</A></STRONG><DD>
$fw->zero(chain) zero's all packet counters for chain. Cannot zero
counters for chain policy.
<P>
<DT><STRONG><A NAME="item_masq">masq()
</A></STRONG><DD>
$fw->masq() lists current masqueraded connections.
<P>
<DT><STRONG><A NAME="item_new_chain">new_chain()
</A></STRONG><DD>
$fw->new_chain(chain) creates new user defined chain.
<P>
<DT><STRONG><A NAME="item_del_chain">del_chain()
</A></STRONG><DD>
$fw->del_chain(chain) delete user defined chain.
<P>
<DT><STRONG><A NAME="item_set_policy">set_policy()
</A></STRONG><DD>
$fw->set_policy(chain) set default policy for chain. Takes Rule option
only.
<P>
</DL>
<P>
<HR>
<H1><A NAME="BUGS">BUGS
</A></H1>
Much of this is highly untested. Masquerading timeout setting isn't yet
implemented. Much of what's planned to be done hasn't been yet. This is to
be considered nothing more than an early beta to work out bugs in the basic
code, and get feedback on usefulness and improvements that could be made.
<P>
<P>
<HR>
<H1><A NAME="AUTHOR">AUTHOR
</A></H1>
Jessica Quaintance <A HREF="MAILTO:(j@x25.org).">(j@x25.org).</A> Please
feel free to email me with feedback, questions, or comments (or indeed
patches/additions).
<P>
<P>
<HR>
<H1><A NAME="COPYRIGHT">COPYRIGHT
</A></H1>
This package is free software; you can redistribute it and/or modify it
under the same terms as Perl itself, with the exception of the libipfwc.c,
ipchains.c, and the files in include/ which have separate terms derived
from those of the original ipchains sources. See COPYING for details of
this license. Please see README.ipchains for the README that was included
with the original source code for ipchains and contains copyrights and
credits for such.
<P>
</DL>
</BODY>
</HTML>
|