Write(???Access Rule???)
objLogFile.Write(???,???)
???--------------------
??? Get Protocol Information
???--------------------
j = 1
strProSelctMethod = Policy.AccessProperties.ProtocolSelectionMethod
If strProSelctMethod = 0 Then
objLogFile.Write(???All Outbound Taffic???)
ElseIf strProSelctMethod = 2 Then
objLogFile.Write(???All Except:???)
End If
For Each Item in Policy.AccessProperties.SpecifiedProtocols
objLogFile.Write(Item)
If j <> Policy.AccessProperties.SpecifiedProtocols.Count Then
objLogFile.Write(???; ???)
End IF
j = j + 1
Next
objLogFile.Write(???,???)
???--------------------
??? Get Source Network Information
???--------------------
GetNet(Policy.SourceSelectionIPs)
???--------------------
??? Get Destion Network Information
???--------------------
GetNet(Policy.AccessProperties.DestinationSelectionIPs)
???--------------------
??? Get Conditions
???--------------------
GetConditions(Policy.AccessProperties.UserSets)
526
Case ???1???
objLogFile.Write(???Server Publishing Rule???)
objLogFile.Write(???,???)
???--------------------
??? Get Published Protocol
???--------------------
objLogFile.
Pages:
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805