source: genesis/tools/nofirewall@ 4938

Last change on this file since 4938 was 4317, checked in by dirkx, 20 years ago

Fixing line types

  • Property svn:eol-style set to native
File size: 196 bytes
Line 
1#! /bin/bash
2# -x
3#
4#
5
6modprobe ipchains
7ic='/sbin/ipchains'
8
9in=input
10out=output
11fw=forward
12
13$ic -F $in
14$ic -F $out
15$ic -F $fw
16
17$ic -P $in ACCEPT
18$ic -P $out ACCEPT
19$ic -P $fw ACCEPT
20
21
Note: See TracBrowser for help on using the repository browser.