Search:
Login
Preferences
Help/Guide
About Trac
Wiki
Timeline
Roadmap
View Tickets
Search
Context Navigation
← Previous Change
Wiki History
Next Change
→
Changes between
Initial Version
and
Version 1
of
Iptables
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
02/28/21 09:38:34 (
4 years
ago)
Author:
krit
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
Iptables
v1
v1
1
= IPtables =
2
3
4
{{{
5
#!sh
6
iptables -L --line-numbers
7
# Delete rules number 3 in the list
8
iptables -D 3
9
}}}
10
11
Forward packet between vpn client subnet
12
{{{
13
#!sh
14
iptables -A FORWARD -s 10.50.30.0/24 -d 10.50.30.0/24 -j ACCEPT
15
}}}