Добрый день, многоуважаемые!
Есть проблемка с правилом для ipfw:
есть правило
${fwcmd} add fwd 127.0.0.1,3128 tcp from 192.168.1.0/24 to any http via re0нужно изключить из этого правила один веб сервер 192.168.2.2 (что бы он на squid не шел)
в мане нашел такую штуку
Additionally, sets of alternative match patterns (or-blocks) can be con-
structed by putting the patterns in lists enclosed between parentheses (
) or braces { }, and using the or operator as follows:
ipfw add 100 allow ip from { x or not y or z } to any
Only one level of parentheses is allowed. Beware that most shells have
special meanings for parentheses or braces, so it is advisable to put a
backslash \ in front of them to prevent such interpretations.
как я должен написать правило чтобы 192.168.2.2 не форвордился на squid?
так не выходит
${fwcmd} add fwd 127.0.0.1,3128 tcp from 192.168.1.0/24 to {not 192.168.2.2 or any} http via re0