| 1 | ##############################################################################
|
|---|
| 2 | # incubusCamd configuration file #
|
|---|
| 3 | # All configuration options in this file observe the same format: #
|
|---|
| 4 | # <configuration_name>=<configuration_value> #
|
|---|
| 5 | # #
|
|---|
| 6 | # Each section are [<section_name>:<option_1>:<option_x>] like. #
|
|---|
| 7 | # #
|
|---|
| 8 | # No matter about white spaces on any place or UNIX/DOS style files #
|
|---|
| 9 | ##############################################################################
|
|---|
| 10 |
|
|---|
| 11 | ########################### general configuration ############################
|
|---|
| 12 | [General]
|
|---|
| 13 | # Enable (1) or disable (0) background execution
|
|---|
| 14 | # 0 - Off
|
|---|
| 15 | # 1 - On
|
|---|
| 16 | #
|
|---|
| 17 | background_execution=0
|
|---|
| 18 |
|
|---|
| 19 | # This sets the level of console output for debugging:
|
|---|
| 20 | # 0 - No debug messages, 1 - First level debug messages, 2 - Second level debug messages,
|
|---|
| 21 | # 3 - Print all debug messages
|
|---|
| 22 | #
|
|---|
| 23 | debug_level=0
|
|---|
| 24 |
|
|---|
| 25 | # This option enables (1) or disables (0) the writing of debug information to the
|
|---|
| 26 | # console.
|
|---|
| 27 | #
|
|---|
| 28 | log_to_console=0
|
|---|
| 29 |
|
|---|
| 30 | # This option enables (1) or disables (0) the writing of console output to a log file
|
|---|
| 31 | #
|
|---|
| 32 | log_to_file=0
|
|---|
| 33 |
|
|---|
| 34 | # When log_to_file is set to 1, this is the path and filename to write console
|
|---|
| 35 | # ouput to.
|
|---|
| 36 | #
|
|---|
| 37 | logfile_name=/var/bin/incubusCamd.log
|
|---|
| 38 |
|
|---|
| 39 | # This is the path and filename to read SoftCam.Key file
|
|---|
| 40 | # by default it will be searched in the /var/keys directory
|
|---|
| 41 | #
|
|---|
| 42 | softcamfile_name=/var/keys/SoftCam.Key
|
|---|
| 43 |
|
|---|
| 44 | # This is the path and filename to read prio file
|
|---|
| 45 | # by default it will be searched in the /var/bin directory, or in /etc, or in /var/keys
|
|---|
| 46 | #
|
|---|
| 47 | priofile_name=/var/bin/incubusCamd.prio
|
|---|
| 48 |
|
|---|
| 49 | # Used to activate on-screen messages. Username and password required if
|
|---|
| 50 | # HTTP authentication is enabled on enigma.
|
|---|
| 51 | # 0 - Off
|
|---|
| 52 | # 1 - On
|
|---|
| 53 | #
|
|---|
| 54 | on_screen_messages_show=1
|
|---|
| 55 | on_screen_messages_username=root
|
|---|
| 56 | on_screen_messages_password=
|
|---|
| 57 | on_screen_messages_key_update=0
|
|---|
| 58 | on_screen_messages_wait_for_key_update=0
|
|---|
| 59 | on_screen_messages_ecm=0
|
|---|
| 60 | on_screen_messages_emm=0
|
|---|
| 61 |
|
|---|
| 62 | # When activated, incubusCamd will listen on the specified port for connections. All
|
|---|
| 63 | # log activity will be broadcast in real-time to connected clients.
|
|---|
| 64 | #
|
|---|
| 65 | console_logs_broadcast=0
|
|---|
| 66 | console_logs_broadcast_port=666
|
|---|
| 67 |
|
|---|
| 68 | # Enable/disable incubusCamd web interface (default port is 668).
|
|---|
| 69 | # 0 - Disable
|
|---|
| 70 | # 1 - Enable
|
|---|
| 71 | webif=0
|
|---|
| 72 | webif_port=668
|
|---|
| 73 |
|
|---|
| 74 | ########################### provider configuration ###########################
|
|---|
| 75 | #
|
|---|
| 76 | # All parameters are in hexadecimal notation.
|
|---|
| 77 | # Each section is defined by the provider id value.
|
|---|
| 78 | # If you don't know the provider id value then use the provider id "000000" and ca id "0000".
|
|---|
| 79 | # On provider 000000 caid 0000 goes all provider wich are not declared. If the provider
|
|---|
| 80 | # is declared then the cam will use the provider founded.
|
|---|
| 81 | #
|
|---|
| 82 |
|
|---|
| 83 | [Prov:000000:CaID:0000]
|
|---|
| 84 | # ----------------------------------------------------------------------------
|
|---|
| 85 | # this provider is a stand-in for all cards and all caid not declared previously
|
|---|
| 86 | #
|
|---|
| 87 | # You can select wich type of priority to assign on each caid/prov combination
|
|---|
| 88 | # priority name available are: card,emu,cs
|
|---|
| 89 | # card: internal card reader
|
|---|
| 90 | # emu: internal emulator
|
|---|
| 91 | # cs: card share protocols
|
|---|
| 92 | # each type must be separated by a comma
|
|---|
| 93 | #
|
|---|
| 94 | # you can also set to use only cs and nothing more, to do it insert on each comma "cs"
|
|---|
| 95 | # example: check_priority=cs,cs,cs # only cs in this case
|
|---|
| 96 | # example: check_priority=card,emu,emu # no cs in this case
|
|---|
| 97 | # obviously this is not suggested but if you prefer to disable an option you should do it in this way
|
|---|
| 98 | # you can also declare only one type: check_priority=cs
|
|---|
| 99 | # or two types: check_priority=cs,emu
|
|---|
| 100 | # and so on
|
|---|
| 101 | check_priority=cs,emu,card
|
|---|
| 102 |
|
|---|
| 103 | # You can select wich protocol will be used first for the current caid/prov combination
|
|---|
| 104 | # protocol name available are: newcamd,cccam,gbox,radegast,camd33,camd35,aroureos
|
|---|
| 105 | # each protocol must be separated by a comma
|
|---|
| 106 | #
|
|---|
| 107 | # you can also declare only one type: cs_protocol_order=cccam
|
|---|
| 108 | # or two types: cs_protocol_order=cccam,newcamd
|
|---|
| 109 | # and so on
|
|---|
| 110 | cs_protocol_order=cccam,newcamd,gbox,camd35,camd33,radegast,aroureos
|
|---|
| 111 |
|
|---|
| 112 | # Enable (1) or disable (0) emm process when a cs protocol is used
|
|---|
| 113 | # 0 - Off
|
|---|
| 114 | # 1 - On
|
|---|
| 115 | #
|
|---|
| 116 | process_emms_on_cs_mode=0
|
|---|
| 117 |
|
|---|
| 118 | # Enable (1) or disable (0) emm g type process
|
|---|
| 119 | # 0 - Off
|
|---|
| 120 | # 1 - On
|
|---|
| 121 | #
|
|---|
| 122 | process_emm_g=0
|
|---|
| 123 |
|
|---|
| 124 | # Enable (1) or disable (0) emm s type process
|
|---|
| 125 | # 0 - Off
|
|---|
| 126 | # 1 - On
|
|---|
| 127 | #
|
|---|
| 128 | process_emm_s=0
|
|---|
| 129 |
|
|---|
| 130 | # Enable (1) or disable (0) emm u type process
|
|---|
| 131 | # 0 - Off
|
|---|
| 132 | # 1 - On
|
|---|
| 133 | #
|
|---|
| 134 | process_emm_u=0
|
|---|
| 135 |
|
|---|
| 136 | # Enable (1) or disable (0) seca 3 ecm pid handler
|
|---|
| 137 | # when is set to On, it will try to use seca 3 ecm pid
|
|---|
| 138 | # before try seca 2 ecm pid, otherwise seca 2 pid will
|
|---|
| 139 | # be selected firstly
|
|---|
| 140 | # 0 - Off
|
|---|
| 141 | # 1 - On
|
|---|
| 142 | #
|
|---|
| 143 | seca3_handler=0
|
|---|
| 144 |
|
|---|
| 145 | # This is the ChannelID wich will be used as first value
|
|---|
| 146 | # on irdeto channels. Value "-1" means no preferred channel id will be used
|
|---|
| 147 | # The value is expressed as decimal. Automatic change will be done.
|
|---|
| 148 | #chid=-1
|
|---|
| 149 |
|
|---|
| 150 | #[Prov:000501:CaID:1833]
|
|---|
| 151 | #check_priority=cs,emu,card
|
|---|
| 152 | #cs_protocol_order=cccam,newcamd,gbox,camd35,camd33,radegast,aroureos
|
|---|
| 153 | #process_emms_on_cs_mode=0
|
|---|
| 154 | #process_emm_g=0
|
|---|
| 155 | #process_emm_s=0
|
|---|
| 156 | #process_emm_u=0
|
|---|
| 157 | #seca3_handler=0
|
|---|
| 158 | #chid=-1
|
|---|
| 159 |
|
|---|
| 160 | ########################### servers configuration ############################
|
|---|
| 161 | [Servers]
|
|---|
| 162 | #
|
|---|
| 163 | # This is the section for the multi-server configuration.
|
|---|
| 164 | #
|
|---|
| 165 | # URL of card-server to use, formats are as follows:
|
|---|
| 166 | #
|
|---|
| 167 | # newcamd://<username_31>:<password_31>@<hostname>:<port>:<caid_4>:<prov_id_6>/<des_key_14>/[EMM]
|
|---|
| 168 | # aroureos://@<hostname>:<port>:<caid_4>:<prov_id_6>/[EMM]
|
|---|
| 169 | # radegast://@<hostname>:<port>:<caid_4>:<prov_id_6>/[EMM]
|
|---|
| 170 | # camd33://<username_10>:<password_10>@<hostname>:<port>:<caid_4>:<prov_id_6>/[aes_key_16]/[EMM]
|
|---|
| 171 | # camd35://<username_32>:<password_32>@<hostname>:<port>:<caid_4>:<prov_id_6>/[EMM]
|
|---|
| 172 | # gbox://<localhost>:<localport>:<password_8>@<peer_address>:<peer_port>:<peer_pass_8>/[EMM]
|
|---|
| 173 | #
|
|---|
| 174 | # cccam://<username_20>:<password_32>@<hostname>:<port>/<receive_emu_shared>/[EMM]
|
|---|
| 175 | # where <receive_emu_shared> should assume value "yes" (without quotes, if you like to receive emus data shared by the server) or "no" (this is assumed by default)
|
|---|
| 176 | #
|
|---|
| 177 | #
|
|---|
| 178 | # NOTE: The "EMM" suffix is optional and tells the card-server client whether
|
|---|
| 179 | # to send EMM's to the card-server or not. Enabling or disabling this only
|
|---|
| 180 | # has effect if the card-server is configured to accept emms from this client.
|
|---|
| 181 | #
|
|---|
| 182 | # NOTE 2: The "card_server_url" is not the same as previously declared in the prov/caid section
|
|---|
| 183 | # use how many server as you like
|
|---|
| 184 | #
|
|---|
| 185 | # i.e:
|
|---|
| 186 | #
|
|---|
| 187 | #card_server_url=cccam://username:password@192.168.1.24:12000
|
|---|
| 188 | #card_server_url=cccam://username:password@yourname.dyndns.org:15000
|
|---|
| 189 | #card_server_url=gbox://yourname.dyndns.org:6666:password@hisname.dyndns.org:6666:peer_pass
|
|---|
| 190 | #card_server_url=cccam://username:password@hostname:port
|
|---|
| 191 | #card_server_url=gbox://192.168.1.24:5555:password@192.168.1.32:4444:peer_pass
|
|---|
| 192 | #card_server_url=newcamd://username:password@192.168.0.100:10550:0500:028800/0102030405060708091011121314
|
|---|
| 193 | #card_server_url=radegast://@192.168.0.100:10550:0100:000065
|
|---|
| 194 | #card_server_url=aroureos://@yourhostname.dyndns.org:10666:0500:007C00
|
|---|
| 195 | #card_server_url=camd35://username:password@192.168.0.50:14150:0603:000000
|
|---|
| 196 | #card_server_url=camd33://username:password@192.168.0.50:10550:0603:000000 # cam33 without AES encryption
|
|---|
| 197 | #card_server_url=camd33://username:password@192.168.0.50:10500:0604:000000/01020304050607080910111213141516 # cam33 with AES encryption
|
|---|
| 198 | #card_server_url=newcamd://username:password@192.168.0.100:10550:0500:028800/0102030405060708091011121314/EMM # EMM is enabled for this server
|
|---|
| 199 |
|
|---|
| 200 | ########################### CaIDs tunneling configuration ############################
|
|---|
| 201 | [CaIDTunnel]
|
|---|
| 202 | #
|
|---|
| 203 | # All values are in hex notation
|
|---|
| 204 | # In this file you can configure what CAIDs/PIDs incubusCamd should tunnel to another CAID
|
|---|
| 205 | #
|
|---|
| 206 | # situation 1: this caid, all idents, on all channels will use the tunnel_caid
|
|---|
| 207 | # caid:tunnel_caid
|
|---|
| 208 | #
|
|---|
| 209 | # situation 2: this caid/ident pair will use the tunnel_caid
|
|---|
| 210 | # caid:tunnel_caid:ident
|
|---|
| 211 | #
|
|---|
| 212 | # situation 3: this caid/ident pair, on channel 'sid' will use the tunnel_caid
|
|---|
| 213 | # caid:tunnel_caid:ident:sid
|
|---|
| 214 | #
|
|---|
| 215 | # i.e:
|
|---|
| 216 | #
|
|---|
| 217 | #1833:1702:000000:0082 # this one should tunnel premiereHD nagra3 into betacrypt cards
|
|---|
| 218 | #1833:1702:000000:0081 # this one should tunnel premiereHD nagra3 into betacrypt cards
|
|---|
| 219 |
|
|---|