T.R | Title | User | Personal Name | Date | Lines |
---|
1908.1 | It's not just only A class networksthat are affected | EEMELI::HJONSSON | Ebbe Jonsson | Fri Apr 11 1997 04:05 | 6 |
| The same problem persists for B class networks subclassed into C class networks
using netmask 255.255.255.0.
Rgs,
[email protected]
|
1908.2 | Check netmask specification... | STAR::WALD | | Fri Apr 11 1997 10:22 | 23 |
| I don't know if this is your problem, but something to watch
out for with screend is if you are using something like:
#
for 10.4.115.0 netmask is 255.255.255.0;
between any and subnet 10.4.115.0 udp port 53 accept log;
default reject log;
#
This will never work. The netmask specification statement expects a
valid network address, which 10.4.115.0 is not (it is of course a
subnet address). In my opinion, screend should issue an error
message if you try to use something like the above. The right way to
accomplish the desired result is:
#
for 10.0.0.0 netmask is 255.255.255.0;
between any and subnet 10.4.115.0 udp port 53 accept log;
default reject log;
#
Hans.
|
1908.3 | Eureka??? Tunnel on firewall. | OSL09::BJORNMY | Open but Secure | Tue Apr 15 1997 03:51 | 23 |
| Some time ago a customer of ours and I tried independently to configure
a tunnel server on a firewall, but neither of us could get it working.
Questions in this conference and discussion with others have not
resolve this problem, althrough some has said that "we have set it up
with no problems".
.2 gave me an "Eureka!" feeling yesterday. Following "the book" we had
used the following screend.conf:
default reject notify log;
for 10.2.1.0 netmask is 255.255.255.0;
from interface blue to subnet 10.2.1.0 accept;
from subnet 10.2.1.0 to interface blue accept;
According to .2 the second line should have been:
for 10.0.0.0 netmask is 255.255.255.0;
I have not tested this yet, but hope to do so during the week. I will
keep you posted on the result. (If this works, the installation
procedure in the manual should contain a warning!)
Bj�rn
|
1908.4 | .2 works | EEMELI::HJONSSON | Ebbe Jonsson | Tue Apr 15 1997 05:23 | 7 |
| The procedure suggested by STAR::WALD in .2 does work (thanks, Hans!).
The man pages are indeed a bit misleading, as they talk about 'subnet mask
specification' not 'network mask specifications'.
Rgs,
[email protected]
|
1908.5 | .2 also works with fw/tunnel | OSL09::BJORNMY | Open but Secure | Mon Apr 21 1997 07:35 | 4 |
| .2 works also for tunnel and firewall on same machine. Thanks a lot,
Hans!
Bj�rn
|