2016-06-16 13:26:38 +02:00
<!DOCTYPE HTML>
2015-08-05 22:22:06 +02:00
< html >
< head >
2015-09-11 14:53:05 +02:00
< meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" / >
2015-08-05 22:22:06 +02:00
< title > OctopusNet< / title >
< link rel = "stylesheet" type = "text/css" href = "/style.css" >
< script type = "text/javascript" src = "/menu.js" > < / script >
<!-- Add included scripts here -->
2019-11-08 15:28:02 +01:00
< script type = "text/javascript" > Octoserve = false ; < / script >
< script type = "text/javascript" src = "/octoserve/serverinfo.js" > < / script >
2015-08-05 22:22:06 +02:00
<!-- Add page scripts here -->
< script type = "text/javascript" >
2016-06-16 13:26:38 +02:00
var NewSettings = null;
var OldSettings = null;
2015-08-05 22:22:06 +02:00
2019-11-08 15:28:02 +01:00
var SupportedDelsys = 0;
var DelSysID = new Array();
DelSysID[ 0] = "SYS_UNDEFINED";
DelSysID[ 1] = "SYS_DVBC_ANNEX_A";
DelSysID[ 2] = "SYS_DVBC_ANNEX_B";
DelSysID[ 3] = "SYS_DVBT";
DelSysID[ 4] = "SYS_DSS";
DelSysID[ 5] = "SYS_DVBS";
DelSysID[ 6] = "SYS_DVBS2";
DelSysID[ 7] = "SYS_DVBH";
DelSysID[ 8] = "SYS_ISDBT";
DelSysID[ 9] = "SYS_ISDBS";
DelSysID[10] = "SYS_ISDBC";
DelSysID[11] = "SYS_ATSC";
DelSysID[12] = "SYS_ATSCMH";
DelSysID[13] = "SYS_DTMB";
DelSysID[14] = "SYS_CMMB";
DelSysID[15] = "SYS_DAB";
DelSysID[16] = "SYS_DVBT2";
DelSysID[17] = "SYS_TURBO";
DelSysID[18] = "SYS_DVBC_ANNEX_C";
DelSysID[19] = "SYS_DVBC2";
2016-06-16 13:26:38 +02:00
var xmlhttp = new XMLHttpRequest();
var url = "/systemsettings.lua";
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState == 4 )
{
if( xmlhttp.status == 200 )
myFunction(xmlhttp.responseText);
}
}
function myFunction(response)
{
var settings = JSON.parse(response);
if( settings.isMaxS8 )
{
document.getElementById("trMSMode").style.display = "table-row";
if( settings.MSMode == "none" )
document.getElementById("MSMode").selectedIndex = 0;
else if( settings.MSMode == "quattro" )
document.getElementById("MSMode").selectedIndex = 2;
else
document.getElementById("MSMode").selectedIndex = 1;
}
document.getElementById("BoxName").value = settings.BoxName;
document.getElementById("QOSButton").checked = settings.vlanEnabled;
document.getElementById("TelnetButton").checked = settings.telnetEnabled;
document.getElementById("NODMSButton").checked = settings.nodmsEnabled;
document.getElementById("STRICTButton").checked = settings.strictEnabled;
document.getElementById("QOSButton").disabled = false;
document.getElementById("TelnetButton").disabled = false;
document.getElementById("NODMSButton").disabled = false;
document.getElementById("STRICTButton").disabled = false;
document.getElementById("BoxName").disabled = false;
document.getElementById("MSMode").disabled = false;
OldSettings = settings;
NewSettings = JSON.parse(response);
2019-11-08 15:28:02 +01:00
if( Octoserve )
NewSettings.DelsysMask = Octoserve.DelsysMask;
2016-06-16 13:26:38 +02:00
}
2015-08-05 22:22:06 +02:00
function SaveSettings()
{
2016-06-16 13:26:38 +02:00
if( NewSettings )
{
var param = "";
if( OldSettings.BoxName != NewSettings.BoxName )
{
if( param != "" ) param += "&";
param += "boxname=" + encodeURIComponent(NewSettings.BoxName);
2019-11-08 15:28:02 +01:00
}
2016-06-16 13:26:38 +02:00
if( OldSettings.telnetEnabled != NewSettings.telnetEnabled )
{
if( param != "" ) param += "&";
param += "telnet=" + (NewSettings.telnetEnabled?"1":"0");
}
2019-11-08 15:28:02 +01:00
2016-06-16 13:26:38 +02:00
if( OldSettings.vlanEnabled != NewSettings.vlanEnabled )
{
if( param != "" ) param += "&";
param += "vlan=" + (NewSettings.vlanEnabled?"1":"0");
}
2019-11-08 15:28:02 +01:00
2016-06-16 13:26:38 +02:00
if( OldSettings.nodmsEnabled != NewSettings.nodmsEnabled )
{
if( param != "" ) param += "&";
param += "nodms=" + (NewSettings.nodmsEnabled?"1":"0");
}
2019-11-08 15:28:02 +01:00
2016-06-16 13:26:38 +02:00
if( OldSettings.MSMode != NewSettings.MSMode )
{
if( param != "" ) param += "&";
param += "msmode=" + NewSettings.MSMode;
}
2019-11-08 15:28:02 +01:00
2016-06-16 13:26:38 +02:00
if( OldSettings.strictEnabled != NewSettings.strictEnabled )
{
if( param != "" ) param += "&";
param += "strict=" + (NewSettings.strictEnabled?"1":"0");
}
2019-11-08 15:28:02 +01:00
if( Octoserve )
{
var DelsysMask = NewSettings.DelsysMask;
if( DelsysMask != Octoserve.DelsysMask )
{
if( DelsysMask == SupportedDelsys ) DelsysMask = 0;
if( param != "" ) param += "&";
param += "delsysmask=" + DelsysMask;
}
}
2016-11-09 14:34:32 +01:00
document.getElementById("SetButton").disabled = true;
if( param != "" )
2019-11-08 15:28:02 +01:00
{
2016-11-09 14:34:32 +01:00
location.replace('/systemsettings.lua?'+param);
}
2016-06-16 13:26:38 +02:00
}
2015-08-05 22:22:06 +02:00
}
function ClearSettings()
{
2016-06-16 13:26:38 +02:00
if( NewSettings )
{
NewSettings.boxname = "";
NewSettings.telnetEnabled = false;
NewSettings.vlanEnabled = false;
NewSettings.nodmsEnabled = false;
NewSettings.nodvbtEnabled = false;
NewSettings.strictEnabled = false;
NewSettings.MSMode = "quad";
2019-11-08 15:28:02 +01:00
NewSettings.DelsysMask = 0;
2016-06-16 13:26:38 +02:00
SaveSettings();
}
2015-08-05 22:22:06 +02:00
}
2019-11-08 15:28:02 +01:00
function ShowDelsys()
{
if( Octoserve )
{
SupportedDelsys = 0;
for(var i = 0; i < Octoserve.TunerList.length ; i + + )
{
if( Octoserve.TunerList[i] )
{
SupportedDelsys = SupportedDelsys | Octoserve.TunerList[i].Type;
}
}
for(var i = 0; i < DelSysID.length ; i + + )
{
var Element = document.getElementById(DelSysID[i]);
if( Element )
{
if( SupportedDelsys & (1< < i ) )
{
Element.disabled = false;
Element.checked = (( Octoserve.DelsysMask & (1< < i ) ) ! = 0 ) | | ( Octoserve . DelsysMask = = 0 ) ;
Element.parentElement.style.visibility = "visible";
}
else
{
Element.disabled = true;
Element.checked = false;
Element.parentElement.style.visibility = "hidden";
}
}
}
}
}
2015-08-05 22:22:06 +02:00
function OnLoad()
{
2019-11-08 15:28:02 +01:00
xmlhttp.open("GET", url, true);
xmlhttp.send();
ShowDelsys();
2016-06-16 13:26:38 +02:00
}
function ChangeBoxName()
{
if( NewSettings )
{
var s = document.getElementById("BoxName").value;
s = s.replace(/[^a-zA-Z0-9@ ()-\/]/g,"");
document.getElementById("BoxName").value = s;
NewSettings.BoxName = document.getElementById("BoxName").value;
document.getElementById("SetButton").disabled = false;
}
2015-08-05 22:22:06 +02:00
}
function Change()
{
2016-06-16 13:26:38 +02:00
if( NewSettings )
{
NewSettings.MSMode = document.getElementById("MSMode").value;
NewSettings.vlanEnabled = document.getElementById("QOSButton").checked;
NewSettings.telnetEnabled = document.getElementById("TelnetButton").checked;
NewSettings.nodmsEnabled = document.getElementById("NODMSButton").checked;
NewSettings.strictEnabled = document.getElementById("STRICTButton").checked;
document.getElementById("SetButton").disabled = false;
}
2015-08-05 22:22:06 +02:00
}
2019-11-08 15:28:02 +01:00
function ChangeDelSys(delsys)
{
if( NewSettings )
{
if( NewSettings.DelsysMask == 0 )
NewSettings.DelsysMask = SupportedDelsys;
var Element = document.getElementById(DelSysID[delsys]);
if( Element )
{
if( Element.checked )
{
2019-11-08 19:09:02 +01:00
NewSettings.DelsysMask |= ((1< < delsys ) & SupportedDelsys ) ;
2019-11-08 15:28:02 +01:00
if( delsys == 16 )
{
NewSettings.DelsysMask |= (1< < 3 ) ;
document.getElementById(DelSysID[3]).checked = true;
}
if( delsys == 6 )
{
NewSettings.DelsysMask |= (1< < 5 ) ;
document.getElementById(DelSysID[5]).checked = true;
}
2019-11-08 19:09:02 +01:00
if( delsys == 10 )
{
NewSettings.DelsysMask |= ((1< < 18 ) & SupportedDelsys ) ;
}
2019-11-08 15:28:02 +01:00
}
else
{
NewSettings.DelsysMask & = ~(1< < delsys ) ;
if( delsys == 3 )
{
NewSettings.DelsysMask & = ~(1< < 16 ) ;
document.getElementById(DelSysID[16]).checked = false;
}
if( delsys == 5 )
{
NewSettings.DelsysMask & = ~(1< < 6 ) ;
document.getElementById(DelSysID[6]).checked = false;
}
2019-11-08 19:09:02 +01:00
if( delsys == 10 )
{
NewSettings.DelsysMask & = ~(1< < 18 ) ;
}
2019-11-08 15:28:02 +01:00
}
}
document.getElementById("SetButton").disabled = false;
}
}
2015-09-03 14:32:02 +02:00
function SetPassword()
{
2016-06-16 13:26:38 +02:00
var pwd1 = document.getElementById("pwd1").value;
var pwd2 = document.getElementById("pwd2").value;
2015-09-03 14:32:02 +02:00
if( pwd1 != pwd2 )
{
document.getElementById("pwd1").value = "";
document.getElementById("pwd2").value = "";
document.getElementById("PwdError").style = "color:#F02000";
return 0;
}
document.getElementById("PwdError").style = "color:#FFFFFF";
2019-11-08 15:28:02 +01:00
location.replace('/setpasswd.lua?'+pwd1);
2015-09-03 14:32:02 +02:00
}
2015-09-11 14:53:05 +02:00
function ToggleHelp(id)
{
var el = document.getElementById(id);
if( el.style.display == "none")
el.style.display = "block";
else
2019-11-08 15:28:02 +01:00
el.style.display = "none";
2015-09-11 14:53:05 +02:00
}
2015-08-05 22:22:06 +02:00
< / script >
< / head >
< body onload = "OnLoad()" >
< table class = "maintable" align = "center" >
< colgroup >
< col width = "182px" / >
< col width = "728px" / >
< / colgroup >
< tr > < td class = "maintd" colspan = "2" >
< a href = "http://www.digitaldevices.de" > < img src = "/BannerDD.jpg" alt = "DD" width = "910" height = "130" / > < / a >
< / td > < / tr >
< tr > < td class = "maintd" colspan = "2" > < / td > < / tr >
< tr >
< td class = "maintd" > < script type = "text/javascript" > CreateMenu ( ) ; < / script > < / td >
< td class = "content" >
2015-09-11 14:53:05 +02:00
< div style = "position: absolute; width:720px" >
2015-08-05 22:22:06 +02:00
<!-- Begin Content -->
2015-09-11 14:53:05 +02:00
< div >
< table class = "tableleft" align = "center" cellspacing = "2px" >
2016-06-16 13:26:38 +02:00
< tr >
< td > Server name< / td >
< td style = "text-align:left" colspan = "2" >
< form action = "" >
2019-11-08 15:28:02 +01:00
< input id = "BoxName" type = "text" value = "" style = "width: 300px" maxlength = "20"
2016-06-16 13:26:38 +02:00
pattern="[a-zA-Z0-9@ ()-]" disabled="true" oninput="ChangeBoxName()" />
< / form >
< / td >
2015-09-11 14:53:05 +02:00
< tr >
< td > Layer 2 Quality of Service< / td >
2016-06-16 13:26:38 +02:00
< td style = "text-align:right" >
2015-09-11 14:53:05 +02:00
< form action = "" >
2016-06-16 13:26:38 +02:00
< input id = "QOSButton" type = "checkbox" value = "Check" disabled = "true" checked = "false" onclick = "Change()" / >
2015-09-11 14:53:05 +02:00
< / form >
< / td >
< td > See note:
< a href = "javascript:ToggleHelp('qos_hlpE')" > English< / a >
< a href = "javascript:ToggleHelp('qos_hlpD')" > Deutsch< / a >
< / td >
< / tr >
2015-08-05 22:22:06 +02:00
2015-09-11 14:53:05 +02:00
< tr >
< td > Telnet< / td >
2016-06-16 13:26:38 +02:00
< td style = "text-align:right" >
2015-09-11 14:53:05 +02:00
< form action = "" >
2016-06-16 13:26:38 +02:00
< input id = "TelnetButton" type = "checkbox" value = "Check" disabled = "true" checked = "false" onclick = "Change()" / >
2015-09-11 14:53:05 +02:00
< / form >
< / td >
< td > Enable it at your own risk< / td >
< / tr >
2019-11-08 15:28:02 +01:00
2015-09-11 14:53:05 +02:00
< tr >
< td > Disable DMS announcement< / td >
2016-06-16 13:26:38 +02:00
< td style = "text-align:right" >
2015-09-11 14:53:05 +02:00
< form action = "" >
2016-06-16 13:26:38 +02:00
< input id = "NODMSButton" type = "checkbox" value = "Check" disabled = "true" checked = "false" onclick = "Change()" / >
2015-09-11 14:53:05 +02:00
< / form >
< / td >
< td > < / td >
< / tr >
2015-08-05 22:22:06 +02:00
2015-09-11 14:53:05 +02:00
< tr >
2019-11-08 15:28:02 +01:00
< td > Enforce strict SAT> IP< / td >
2016-06-16 13:26:38 +02:00
< td style = "text-align:right" >
2015-09-11 14:53:05 +02:00
< form action = "" >
2016-06-16 13:26:38 +02:00
< input id = "STRICTButton" type = "checkbox" value = "Check" disabled = "true" checked = "false" onclick = "Change()" / >
2015-09-11 14:53:05 +02:00
< / form >
< / td >
< td > See note:
< a href = "javascript:ToggleHelp('strict_hlpE')" > English< / a >
< a href = "javascript:ToggleHelp('strict_hlpD')" > Deutsch< / a >
< / td >
< / tr >
2016-06-16 13:26:38 +02:00
< tr id = "trMSMode" style = "display:none" >
< td > Multiswitch emulation< / td >
< td style = "text-align:right" >
2015-09-11 14:53:05 +02:00
< form action = "" >
2016-06-16 13:26:38 +02:00
< select id = "MSMode" style = "width: 70px" onchange = "Change()" >
< option value = "none" > Off< / option >
< option value = "quad" > Quad< / option >
< option value = "quattro" > Quattro< / option >
< / select >
2015-09-11 14:53:05 +02:00
< / form >
< / td >
< td > See note:
< a href = "javascript:ToggleHelp('nosw_hlpE')" > English< / a >
< a href = "javascript:ToggleHelp('nosw_hlpD')" > Deutsch< / a >
< / td >
< / tr >
2019-11-08 15:28:02 +01:00
< tr >
< td colspan = "3" >
< form action = "" >
< table id = "delsystable" cellpadding = "2px" align = "center" width = "100%" >
< colgroup >
< col width = "25%" >
< col width = "25%" >
< col width = "25%" >
< col width = "25%" >
< / colgroup >
< tr >
< td >
< input id = "SYS_DVBS" type = "checkbox" disabled = "true" checked = "false" onclick = "ChangeDelSys(5)" / >
DVB-S
< / td >
< td >
< input id = "SYS_DVBS2" type = "checkbox" disabled = "true" checked = "false" onclick = "ChangeDelSys(6)" / >
DVB-S2/S2X
< / td >
< td >
< input id = "SYS_ISDBS" type = "checkbox" disabled = "true" checked = "false" onclick = "ChangeDelSys(9)" / >
ISDB-S
< / td >
< / tr >
< tr >
< td >
< input id = "SYS_DVBT" type = "checkbox" disabled = "true" checked = "false" onclick = "ChangeDelSys(3)" / >
DVB-T
< / td >
< td >
< input id = "SYS_DVBT2" type = "checkbox" disabled = "true" checked = "false" onclick = "ChangeDelSys(16)" / >
DVB-T2
< / td >
< td >
< input id = "SYS_ISDBT" type = "checkbox" disabled = "true" checked = "false" onclick = "ChangeDelSys(8)" / >
ISDB-T
< / td >
< / tr >
< tr >
< td >
< input id = "SYS_DVBC_ANNEX_A" type = "checkbox" disabled = "true" checked = "false" onclick = "ChangeDelSys(1)" / >
DVB-C
< / td >
< td >
< input id = "SYS_DVBC2" type = "checkbox" disabled = "true" checked = "false" onclick = "ChangeDelSys(19)" / >
DVB-C2
< / td >
< td >
2019-11-08 19:09:02 +01:00
< input id = "SYS_ISDBC" type = "checkbox" disabled = "true" checked = "false" onclick = "ChangeDelSys(10)" / >
2019-11-08 15:28:02 +01:00
ISDB-C
< / td >
< td >
2019-11-08 19:09:02 +01:00
< input id = "SYS_DVBC_ANNEX_B" type = "checkbox" disabled = "true" checked = "false" onclick = "ChangeDelSys(4)" / >
2019-11-08 15:28:02 +01:00
J83.B
< / td >
< / tr >
< / table >
< / form >
< / td >
< / tr >
2015-09-11 14:53:05 +02:00
< tr >
< td colspan = "2" align = "right" >
< div style = "width: 300px" >
< form action = "" >
< input type = "Button" value = "Cancel" onclick = "location.replace('index.html')" >
< input type = "Button" value = "Reset" onclick = "ClearSettings()" >
< input id = "SetButton" type = "Button" disabled = "true" value = "Set" onclick = "SaveSettings()" >
< / form >
< / div >
< / td >
< / tr >
< / table >
< / div >
2015-09-03 14:32:02 +02:00
< br / >
2015-09-24 15:38:21 +02:00
< div id = "passwd" style = "display: none" >
2016-06-28 20:34:36 +02:00
< form action = "" >
2015-09-11 14:53:05 +02:00
< table class = "tableleft" align = "center" cellspacing = "2px" >
< tr >
< td align = "right" >
New password
< / td >
< td >
< input id = "pwd1" type = "Password" value = "" size = "30" >
< / td >
< / tr >
< tr >
< td align = "right" >
Repeat new password
< / td >
< td >
< input id = "pwd2" type = "Password" value = "" size = "30" >
< / td >
< / tr >
< tr >
< td >
< div Id = "PwdError" Style = "color:#FFFFFF" >
Repeated password doesn't match
< / div >
< / td >
< td align = "right" >
< input id = "SetButton" type = "Button" value = "Set Password" onclick = "SetPassword()" >
< / td >
< / tr >
< / table >
2016-06-28 20:34:36 +02:00
< / form >
2015-09-11 14:53:05 +02:00
< / div >
< div id = "qos_hlpE" onclick = "ToggleHelp('qos_hlpE')"
2019-11-08 15:28:02 +01:00
style="display: none; position: absolute; width: 660px; left: 30px; top:30px; z-index: 2; border: 1px solid #000000; background: #FFFFE0;">
2015-09-11 14:53:05 +02:00
< div style = "position: relative; margin:20px; clear:both" >
< h3 > Layer 2 Quality of Service< / h3 >
This is defined in the < b > IEEE 802.1Q< / b > VLAN standard, and provides QoS in a local network.< br / >
For it to work all components in the LAN must either be transparent to it or need to support it.
2016-06-30 18:25:11 +02:00
< ul >
< li > < b > hubs:< / b > always transparent.< / li >
< li > < b > dumb switches:< / b > usually transparent, better ones use it to prioritise the traffic.< / li >
< li > < b > smart switches:< / b > depends on setting.< / li >
< li > < b > PCs and the like:< / b > newer systems support it by default, for older systems check the LAN adapter settings.< / li >
< li > < b > WLAN access points:< / b > depends on firmware and model. OpenWRT based devices usually work.< / li >
< / ul >
2015-09-11 14:53:05 +02:00
< / div >
< / div >
2019-11-08 15:28:02 +01:00
< div id = "qos_hlpD" onclick = "ToggleHelp('qos_hlpD')"
style="display: none; position: absolute; width: 660px; left: 30px; top:30px; z-index: 2; border: 1px solid #000000; background: #FFFFE0;">
2015-09-11 14:53:05 +02:00
< div style = "position: relative; margin:20px; clear:both" >
< h3 > Layer 2 Quality of Service< / h3 >
Dies ist im < b > IEEE 802.1Q< / b > VLAN Standard definiert und erlaubt QoS im lokalem Netz.< br / >
Damit es funktioniert mü ssen alle Netzwerkkompenenten im LAN entweder transparent sein oder es unterstü tzen.
2016-06-30 18:25:11 +02:00
< ul >
< li > < b > Hubs:< / b > sind immer transparent< / li >
< li > < b > Dumb Switches:< / b > normalerweise transparent, bessere priorisieren damit den Datenverkehr< / li >
< li > < b > Smart Switches:< / b > hä ngt von den Einstellungen ab< / li >
< li > < b > PCs und dergleichen:< / b > neue Systeme unterstü tzten es defaultmässig, für ä ltere in den Einstellungen der Netzwerkarte nachschauen< / li >
< li > < b > WLAN Accesspoints:< / b > hä ngt von Modell und deren Firmware ab. OpenWRT basierte Gerä te unterstü tzen es normalerweise< / li >
< / ul >
2015-09-11 14:53:05 +02:00
< / div >
< / div >
< div id = "nosw_hlpE" onclick = "ToggleHelp('nosw_hlpE')"
2019-11-08 15:28:02 +01:00
style="display: none; position: absolute; width: 660px; left: 30px; top:30px; z-index: 2; border: 1px solid #000000; background: #FFFFE0;">
2015-09-11 14:53:05 +02:00
< div style = "position: relative; margin:20px; clear:both" >
< h3 > Multiswitch emulation on OctopusNet S8< / h3 >
Multiswitch emulation allows to connect directly a Quad/Quattro LNB to the 4 inputs on the S8.
2016-06-30 18:25:11 +02:00
< p >
< ul >
< li > Disabling configures the S8 as a standard 4 tuner system.< / li >
< li > Use quad setting for connection to a quad LNB or to 4 outputs from a multiswitch.< / li >
< li > Use quattro setting for connection to a quattro LNB or to the trunk outputs from a multiswitch. Ensure to connect the VL/VH/HL/HH cables correctly.< / li >
< / ul >
2016-06-16 13:26:38 +02:00
< p / >
With the quad/quattro settings only the reception of a single satellite is supported. For full flexibility an EN50607 LNB or switch is recommended.
2015-09-11 14:53:05 +02:00
< / div >
< / div >
< div id = "nosw_hlpD" onclick = "ToggleHelp('nosw_hlpD')"
2019-11-08 15:28:02 +01:00
style="display: none; position: absolute; width: 660px; left: 30px; top:30px; z-index: 2; border: 1px solid #000000; background: #FFFFE0;">
2015-09-11 14:53:05 +02:00
< div style = "position: relative; margin:20px; clear:both" >
< h3 > Multischalter-Emulation OctopusNet S8< / h3 >
Multischalter-Emulation erlaubt den direkten Anschluß eines Quad/Quattro LNB an die S8
2016-06-30 18:25:11 +02:00
< p >
< ul >
< li > Abschalten konfiguriert die S8 als ein Standardsystem mit 4 Tunern.< / li >
< li > Für einen Quad LNB oder für 4 Ausgä nge von einem Multiswitch Quad Einstellung auswä hlen.< / li >
< li > Für einen Quattro LNB oder fü r den Stammausgang eines Multiswitches Quattro Einstellung auswä hlen.< / li >
< / ul >
2016-06-16 13:26:38 +02:00
< p / >
2019-11-08 15:28:02 +01:00
In der Quad oder Quattro Einstellung wird nur der Empfang eines Satelliten unterstü tzt. Für volle Flexibilitä t wird der Einsatz eines EN50607 LNB bzw Switch empfohlen.
2015-09-11 14:53:05 +02:00
< / div >
< / div >
< div id = "strict_hlpE" onclick = "ToggleHelp('strict_hlpE')"
2019-11-08 15:28:02 +01:00
style="display: none; position: absolute; width: 660px; left: 30px; top:30px; z-index: 2; border: 1px solid #000000; background: #FFFFE0;">
2015-09-11 14:53:05 +02:00
< div style = "position: relative; margin:20px; clear:both" >
2019-11-08 15:28:02 +01:00
< h3 > Enforce strict SAT> IP< / h3 >
2015-09-11 14:53:05 +02:00
< p / >
2019-11-08 15:28:02 +01:00
The SAT> IP specification allows a second client to receive a stream created by another client.
2015-10-01 14:26:35 +02:00
The OctopusNet allows to modify some parameters (like PIDs) on this second stream. The original stream is not affected by this.
2015-09-11 14:53:05 +02:00
< p / >
2019-11-08 15:28:02 +01:00
Enforce strict SAT> IP disables this enhancment.
2015-09-11 14:53:05 +02:00
< br / >
2019-11-08 15:28:02 +01:00
Do this for testing clients to ensure they are compatible with other SAT> IP servers
2015-09-11 14:53:05 +02:00
< / div >
< / div >
< div id = "strict_hlpD" onclick = "ToggleHelp('strict_hlpD')"
2019-11-08 15:28:02 +01:00
style="display: none; position: absolute; width: 660px; left: 30px; top:30px; z-index: 2; border: 1px solid #000000; background: #FFFFE0;">
2015-09-11 14:53:05 +02:00
< div style = "position: relative; margin:20px; clear:both" >
2019-11-08 15:28:02 +01:00
< h3 > Erzwinge striktes SAT> IP< / h3 >
2015-09-11 14:53:05 +02:00
< p / >
2019-11-08 15:28:02 +01:00
Die SAT> IP Spezifikation erlaubt einem zweiten Client das Empfangen eines von einem anderen Client angelegten Stream. Die OctopusNet erlaubt
2015-09-20 14:03:34 +02:00
die Ä nderung einiger Parameter (z.B. PIDs) für diesen Stream. Der orginale Stream wird dadurch nicht beeinflusst.
2015-09-11 14:53:05 +02:00
< p / >
2019-11-08 15:28:02 +01:00
Das Erzwingen von strikten SAT> IP schaltet diese Erweiterung ab.
2015-09-11 14:53:05 +02:00
< br / >
2019-11-08 15:28:02 +01:00
Beim Testen von Clients ist es sinnvoll diesen Parameter zu setzen um die Kompatibilitä t mit anderen SAT> IP Servern sicherzustellen.
2015-09-11 14:53:05 +02:00
< / div >
2015-08-05 22:22:06 +02:00
< / div >
<!-- End Content -->
< / div >
< / td >
< / tr >
< tr > < td colspan = "2" > < / td > < / tr >
< / table >
< / body >
< / html >