Slashdot Mirror


User: p38

p38's activity in the archive.

Stories
0
Comments
4
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4

  1. Re:automated responses to probes? on Aggressive Network Self-Defense · · Score: 2, Informative
    Add a rate limit to your incoming ssh syn connections and drop the ones that go over the rate limit. Also, remove password authentication and only allow rsa authentication. With these together, ssh attacks will disappear from your logs.

    For example:
    $IPTABLES -A tcp_packets -p TCP -s 0/0 -d $INET_IP --dport 22 -j allowed
    $IPTABLES -A allowed -p TCP -m state --state ESTABLISHED,RELATED -j ACCEPT
    $IPTABLES -A allowed -p TCP --syn -m limit --limit 3/minute --limit-burst 3 -j ACCEPT
    $IPTABLES -A allowed -p TCP -j LOG --log-level "NOTICE" --log-prefix '[DROP:RATE_LIMIT] '
    $IPTABLES -A allowed -p TCP -j REJECT
    Note. Only turn on the output to log when you want to see what is going on. Otherwise, just comment out that line.
  2. A RadioLabs and Linksys solution on Wide Area Wireless on a Shoestring Budget? · · Score: 3, Informative

    RadioLabs.com has an excellent selection of wireless antennas, coax, and connectors that will work for you.
    http://www.radiolabs.com/products/wireless/wireles s-2.html

    Also, I agree with an earlier post suggesting the Linksys WRT54G or GS running the SveaSoft firmware.
    http://www.sveasoft.com/

    With a slightly better antenna and a few WRT54G's in a WDS configuration, you could easily provide both wireless and wired connections in the remote buildings and have some wireless coverage between the buildings as a bonus.

    With enough of the WRT54G's in the WDS configuration and using OSPF, you could create a "self healing" component to the network.

    G'Luck

  3. backup radar on EU Approves Anti-Collision Automobile Radar · · Score: 2, Funny

    My wife needs this on her car.

  4. Re:Sheesh on This Call May Be Monitored ... · · Score: 1

    Actually that statement is incorrect. In most states of the US, recording a conversation is legal as long as ONE party on the call knows that it is being recorded. There are certain states that require that both parties are notified. I found the following link that explains it much better than I. http://www.callcorder.com/phone-recording-law-amer ica.htm