No this is not a valid filter. You have to first apply a filter for a particular TCP/UDP port or protocol. Then do the next port, etc. Then you need end that with a generic forward all. The idea is the Max will look at each filter rule. If the condition is met then the packet is dropped. However, if the condition is not met then it will look at the next filter and so on and so forth. That is why you need the final generic forward all filter as the last filter. If it was anywhere else it would supercede any filter after that numerically. Remember that the same applies for incoming and outgoing.
That said, here is an example of the first filter. For this example I will block TCP 135.
Ethernet > Filters > IP Call > Input filter... > In filter 01
Valid=Yes
Type=IP
Ip...
Forward=No (No means to drop packet if condition is met)
Src Mask=0.0.0.0
Src Adrs=0.0.0.0
Dst Mask=0.0.0.0
Dst Adrs=0.0.0.0
Protocol=6 (1=ICMP, 6=TCP, 17=UDP. This info is in your manuals)
Src Port Cmp=None (leave as None since it is the dest port we are concerned with here)
Src Port #=N/A
Dst Port Cmp=Eql
Dst Port #=135
TCP Estab=No
The next filter to block UDP 135 would be the same except Protocol=17 instead of 6. Follow this example for all filters. Make sure you still have one filter left for your Generic Forward all. Configure as follows:
Ethernet > Filters > IP Call > Input filter... > In filter x
Valid=Yes
Type=Generic
Generic...
Forward=Yes
Leave all else default. Do the same for the outgoing filter. To apply the filter to your dial in users goto:
Ethernet > Connections > [connection profile name] > Session options...
Data Filter=1 (Assuming you used the first filter position 90-501. For 90-502 set Data filter=2, etc.)
Keep in mind the filter will not take affect until after the user reconnects to the Max. To apply the filter to your ethernet port goto:
Ethernet > Mod Config > Ether options...
Filter=1 (same rule applies as with connection profile)
Just another note, all this can be found in your manuals. If you don't have a manual, you can download PDF versions at
Good luck!