Reputation: 11
I use iptables and bash scripts and wanting to make simply HotSpot for self. How to save request page on linux (CentOS)? Can anybody solved this problem earlier?
Upvotes: 0
Views: 65
Reputation: 51
May be logging your requests in iptables, like:
iptables -A INPUT -p tcp -j LOG --log-prefix ' INPUT TCP ' --log-level 4
Upvotes: 0