Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature 43 configurable pcap #103

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions fakenet/configs/default.ini
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,18 @@ DebugLevel: Off
# should be applied to all interfaces. Comment out to leave unconfigured.
LinuxRedirectNonlocal: *

# Specify which interfaces Fakenet-NG will ignore. Disposition can be
# set to "Drop" or "Pass". "Drop" will drop the packet and "Pass" will ignore
# it and allow it to pass through to any listening application or Fakenet-NG
# Listener. Enter BlacklistedInterfaces as a list of IP addresses separated by
# comma or space (example 127.0.0.1 192.0.0.1).
LinuxBlacklistInterfaces: No
LinuxBlacklistInterfacesDisposition: Drop
LinuxBlacklistedInterfaces: 127.0.0.1

# In multi-host mode, configure listeners to ignore local traffic.
ListenerLocalIgnore: No

# Set LinuxFlushIptables to Yes to have the Linux Diverter flush all iptables
# rules before adding its FakeNet-NG-specific rules to iptables. FakeNet-NG
# will restore all old rules when it exits, unless its termination is
Expand All @@ -77,6 +89,15 @@ LinuxFlushDNSCommand: service dns-clean restart
DumpPackets: Yes
DumpPacketsFilePrefix: packets

# Determine which stages of packet modification are included in the packet
# capture. "Raw" includes the unmodified packets, "Mangled" includes packets
# that have been modified by Fakenet-NG. "Proxied" includes packets that travel
# to and from the ProxyListener. Note: Intersection of sets is included if both
# catgories are selected. As a side effect, excluding "Mangled" can lead to
# missing outgoing traffic if traffic is proxied, and excluding "Raw" can lead
# to missing traffic from the Proxy to the Diverter.
PcapVisibility: Raw, Mangled, Proxied

# DHCP server running under VMWare Host-Only networking does not configure
# interface gateway and DNS server. Gateway must be configured to allow
# Windows to attempt to route external traffic so that FakeNet could
Expand Down
Loading