OSCam/en/Config/oscam.whitelist: Unterschied zwischen den Versionen

Aus Streamboard Wiki
Zur Navigation springen Zur Suche springen
(→‎oscam.whitelist: add rules)
K
 
(7 dazwischenliegende Versionen von einem anderen Benutzer werden nicht angezeigt)
Zeile 1: Zeile 1:
 
== oscam.whitelist ==
 
== oscam.whitelist ==
global whitelisting configuration file for OSCam
+
global ECM length whitelisting configuration file for OSCam
  
  w:  [CAID][:][provider ID][:][service ID][:][ECM PID][:][CHID][:][ECM length]
+
m:  3456:123456:::::  4567:234567:
       entry for whitelisting
+
    '''mapping'''
+
 
  i:  [CAID][:][provider ID][:][service ID][:][ECM PID][:][CHID][:][ECM length]
+
  w:  [CAID][:][provider ID][:][service ID][:][ECM PID][:][CHID][:][ECM length 1[,ECM length 2]...]]
       ignore entry
+
      '''ECM length whitelisting'''
 +
 
 +
l:  [CAID][:][provider ID][:][service ID][:][ECM PID][:][CHID][:][ECM length 1[,ECM length 2]...]]
 +
       ECM length whitelisting, does not proceed with any other ECM length,  abbreviation for normal ECM length
 +
      whitelisting using w parameter
 +
      '''whitelisting when matching'''
 +
 
 +
  i:  [CAID][:][provider ID][:][service ID][:][ECM PID][:][CHID][:][ECM length 1[,ECM length 2]...]]
 +
       '''ignore ECM whitelisting'''
  
 
Examples
 
Examples
 
  w:0100      # whitelisting for CAID 0100
 
  w:0100      # whitelisting for CAID 0100
  i:0200:1234 # ignore CAID 0200 with service ID 1234
+
  i:0200::1234 # ignore CAID 0200 with service ID 1234
 
  i:::::2345  # ignore CHID 2345
 
  i:::::2345  # ignore CHID 2345
 
  w:          # allow all otthers (blacklist)
 
  w:          # allow all otthers (blacklist)
Zeile 19: Zeile 27:
 
  3. When end of file is reached and no line is matching, request is filtered. If you want to use this as a blacklist, just add
 
  3. When end of file is reached and no line is matching, request is filtered. If you want to use this as a blacklist, just add
 
     w: as your last line! This matches all, so if no line before is matching, this entry allowes all others
 
     w: as your last line! This matches all, so if no line before is matching, this entry allowes all others
 +
 +
example-file:
 +
<syntaxhighlight lang="bash">
 +
# oscam.whitelist - 2011/12/29
 +
# Whitelist-Entry:
 +
# w:caid:prov:srvid:pid:chid:ecmlen1[,ecmlen2,...,ecmlenN]
 +
#
 +
# Ignore-Entry:
 +
# i:caid:prov:srvid:pid:chid:ecmlen1[,ecmlen2,...,ecmlenN]
 +
#
 +
# Example:
 +
# w:1702 #all caid 1702 is on whitelist
 +
# i:500::1234 #ignores all caid 0500 srvid 1234
 +
#
 +
# Rules:
 +
# 1. First match - first used
 +
# 2. No (valid) lines in oscam.whitelist, no filter
 +
# 3. When end of file is reached and no line is matching, request is filtered. If you want to use this as a blacklist, just add
 +
#    w: as your last line! This matches all, so if no line before is matching, this entry allowes all others
 +
#
 +
# Links:
 +
# http://streamboard.gmc.to:8001/wiki/ECMLengthList
 +
#
 +
# WHITELIST ************************************************
 +
# S02 ------------------------------------------------------
 +
w:1702:000000::::93
 +
# S02-Tunnel -----------------------------------------------
 +
w:1833:000000::::89
 +
# V13 ------------------------------------------------------
 +
w:09C4:000000::::46,58,90,95
 +
# HD+ ------------------------------------------------------
 +
w:1830:000000::::92
 +
w:1830:003411::::92
 +
w:1830:008011::::92
 +
# CAMD3-Keys -----------------------------------------------
 +
w:0D05:::::9C
 +
# IGNORES **************************************************
 +
i:
 +
</syntaxhighlight>
 +
 +
[[Datei:MessageS.png|text-bottom]] '''[[Streamboard:oscam/wiki/OscamWhiteList|here]] you will find a whitelist'''
 +
 +
''' To avoid unnecessary memory consumption is strongly recommended that you copy only the rows from the directory into your own oscam.whitelist that are really needed!'''
 +
  
 
{{OSCamTranslatedLinks}}
 
{{OSCamTranslatedLinks}}

Aktuelle Version vom 23. Juli 2012, 01:19 Uhr

oscam.whitelist

global ECM length whitelisting configuration file for OSCam

m:  3456:123456:::::   4567:234567:
    mapping
w:  [CAID][:][provider ID][:][service ID][:][ECM PID][:][CHID][:][ECM length 1[,ECM length 2]...]]
     ECM length whitelisting
l:  [CAID][:][provider ID][:][service ID][:][ECM PID][:][CHID][:][ECM length 1[,ECM length 2]...]]
     ECM length whitelisting, does not proceed with any other ECM length,  abbreviation for normal ECM length
     whitelisting using w parameter
     whitelisting when matching
i:  [CAID][:][provider ID][:][service ID][:][ECM PID][:][CHID][:][ECM length 1[,ECM length 2]...]]
     ignore ECM whitelisting

Examples

w:0100       # whitelisting for CAID 0100	
i:0200::1234 # ignore CAID 0200 with service ID 1234	
i:::::2345   # ignore CHID 2345	
w:           # allow all otthers (blacklist)

Rules:

1. First match - first used
2. No (valid) lines in oscam.whitelist, no filter
3. When end of file is reached and no line is matching, request is filtered. If you want to use this as a blacklist, just add
   w: as your last line! This matches all, so if no line before is matching, this entry allowes all others

example-file: <syntaxhighlight lang="bash">

  1. oscam.whitelist - 2011/12/29
  2. Whitelist-Entry:
  3. w:caid:prov:srvid:pid:chid:ecmlen1[,ecmlen2,...,ecmlenN]
  4. Ignore-Entry:
  5. i:caid:prov:srvid:pid:chid:ecmlen1[,ecmlen2,...,ecmlenN]
  6. Example:
  7. w:1702 #all caid 1702 is on whitelist
  8. i:500::1234 #ignores all caid 0500 srvid 1234
  9. Rules:
  10. 1. First match - first used
  11. 2. No (valid) lines in oscam.whitelist, no filter
  12. 3. When end of file is reached and no line is matching, request is filtered. If you want to use this as a blacklist, just add
  13. w: as your last line! This matches all, so if no line before is matching, this entry allowes all others
  14. Links:
  15. http://streamboard.gmc.to:8001/wiki/ECMLengthList
  16. WHITELIST ************************************************
  17. S02 ------------------------------------------------------

w:1702:000000::::93

  1. S02-Tunnel -----------------------------------------------

w:1833:000000::::89

  1. V13 ------------------------------------------------------

w:09C4:000000::::46,58,90,95

  1. HD+ ------------------------------------------------------

w:1830:000000::::92 w:1830:003411::::92 w:1830:008011::::92

  1. CAMD3-Keys -----------------------------------------------

w:0D05:::::9C

  1. IGNORES **************************************************

i: </syntaxhighlight>

MessageS.png here you will find a whitelist

To avoid unnecessary memory consumption is strongly recommended that you copy only the rows from the directory into your own oscam.whitelist that are really needed!


Diese Seite in anderen Sprachen - This page in other languages - Cette page dans d'autres langues - Queste pagine in altre Lingue

LanguageDE S.png [[OSCam/de/{{#titleparts:OSCam/en/Config/oscam.whitelist|3|3}}|Deutsch]] LanguageEN S.png [[OSCam/en/{{#titleparts:OSCam/en/Config/oscam.whitelist|3|3}}|English]] LanguageFR S.png [[OSCam/fr/{{#titleparts:OSCam/en/Config/oscam.whitelist|3|3}}|Français]] LanguageIT S.png [[OSCam/it/{{#titleparts:OSCam/en/Config/oscam.whitelist|3|3}}|Italiano]]