1 IPC_Control 42233 TCP 192.168.4.54 8000
2 IPC_HTTP 32916 TCP 192.168.4.54 80
3 IPC_RTSP 33390 TCP 192.168.4.54 554
4 IPC_CIVIL_CMD 41846 TCP 192.168.4.54 9010
5 IPC_CIVIL_STREAM 41856 TCP 192.168.4.54 9020
6 IPC_RTSPTCP 8200 TCP 192.168.4.54 8200
Yazar: nurettin alp
-
hikvision ip camera upnp ports
-
mikrotik ptp
Hello,
mANTBox 15s are not designed for PTP applications.
You can use mANTBox as Access point and connect clients to it, but for P2P connections – there are better solutions.
Please follow our P2P link guide to find which one suits You the best:
https://i.mt.lv/routerboard/files/antenas-160404123306.pdfBest regards,
Antons B.—
MikroTik.comCome to the MUM conferences, registration open in Cameroon, Kenya, Russia (Ekaterinburg), Russia (St. Petersburg), Europe (Berlin), Australia, New Zealand! https://mum.mikrotik.com/
—
25/01/2018 14:06 – nurettin alp wrote:
> i will buy 2 mANTBox 15s and use for point to point network but i canT2
> find any distance information . hom much km distance ? thank you. -
cosa oda termostatı seri noları
0156 ilk versiyon
0158 nem ölçerli infraredsiz
0162 nem ölçer ve infraredli -
openvpn windows autoconnect
“C:\Program Files\OpenVPN\bin\openvpn.exe” –config “C:\Program Files\OpenVPN\config\pfsense-udp-1194-config.ovpn”
“C:\Program Files\OpenVPN\config”
-
archicad repair
application data\graphisoft
graphisoft
local settings\application data\graphisoft -
openhab
https://github.com/openhab/openhab/wiki/Linux-and-OS-X#apt-get
ContentInstallation via apt-get
Manual installation (alternatively – including openHAB Designer)
Yocto Layer
Via ChefNote: for Hardware specific details for Synology Diskstation, QNAP, and ARM boards like Raspberry Pi visit:
ARM based systems
Synology and QNAP serversOverview
openHAB is a Java application and is expected to run on all platforms where JVM 1.6 or later is available. This includes Windows, Mac OS X, and Linux on x86, x86_64, and ARM architectures. openHAB can be run on laptops, desktop computers, or ARM based single-board computers.
apt-getNote: As of the release of openHAB 1.7.1 on 26. Juli 2015 the deb-repository is digitally signed! Therefore you will have to add the “openHAB Bintray Repositories” gpg key to your apt keyring if you want to use the repo. This is also necessary for the installation of releases prior to 1.7.1.. The key installation is described below.
Installation
Install Java if 1.6 or higher is not already installed. The following will display your current Java version.
java -version
Add the openHAB Bintray Repositories key to the apt-keyring
using wget:
wget -qO – ‘https://bintray.com/user/downloadSubjectPublicKey?username=openhab’ | sudo apt-key add –
or using curl:
curl ‘https://bintray.com/user/downloadSubjectPublicKey?username=openhab’ | sudo apt-key add –
Add openHAB apt repository to the apt sources list (Note: the current openhab.list file will be overwritten)
echo “deb http://dl.bintray.com/openhab/apt-repo stable main” | sudo tee /etc/apt/sources.list.d/openhab.list
Resynchronize the package index
sudo apt-get update
Install the openHAB runtime
sudo apt-get install openhab-runtime
If you have more than one OpenHAB binding with a USB device (Z-Wave, RFXCOM, etc), refer to symlinks
Start openHAB – manually
Init based on sysVinit (e.g. Debian 7 / Ubuntu 14.x and earlier)sudo /etc/init.d/openhab start
sudo /etc/init.d/openhab statusInit based on systemd (e.g. Debian 8 / Ubuntu 15.x and higher)
sudo systemctl start openhab
Start openHAB – at system startup
Init based on sysVinit (e.g. Debian 7 / Ubuntu 14.x and earlier)sudo update-rc.d openhab defaults
or using Init based on systemd (e.g. Debian 8 / Ubuntu 15.x and higher)
sudo systemctl daemon-reload
sudo systemctl enable openhabInstall the add-ons / bindings as you need them (see list on right side-bar)
sudo apt-get install openhab-addon-${addon-type}-${addon-name}
Examples:
sudo apt-get install openhab-addon-binding-knx
sudo apt-get install openhab-addon-persistence-rrd4j
sudo apt-get install openhab-addon-io-dropbox
sudo apt-get install openhab-addon-action-twitterA list of all available packages can be retrieved with
sudo apt-cache search openhab
Configure your system as outlined here: configuration.
If you wish to use a USB zwave stick or other USB/serial device you will need to add the “openhab” users to the “dialout” group:
sudo usermod -a -G dialout openhab
and then reboot.
Test it
Point your browser to http://localhost:8080/openhab.app?sitemap=yourname and you should see your sitemap.
Performance TuningOnce your system is stable and configured the way you want it, review Performance Tuning
To UpgradeNote: changed configuration files will be retained even on upgrades.
sudo apt-get update
sudo apt-get upgradeFile locations
service configuration /etc/default/openhab
site configuration /etc/openhab
log files /var/log/openhab
userdata like rrd4j databases /var/lib/openhab
openHAB engine, addons and /webapps folder /usr/share/openhabAdvanced Setup
Apt Repository Distributionsstable
The latest stable openHAB release will be installed.
testing
The latest release candidate of openHAB will be installed.
unstable (not yet available)
The latest snapshot release of openHAB will be installed.
version based distribution names (1.7.0, …)
All Releases are available as with a distribution name corresponding to the version name. If you want to stick your installation to a specific version use one of these distribution names. The installation will only be upgraded if you change the sources.list to another version. Therefore “apt-get update && apt-get upgrade” can be safely used for the other linux software.
Examples:
echo “deb https://dl.bintray.com/openhab/apt-repo 1.7.0 main” | sudo tee -a /etc/apt/sources.list
echo “deb https://dl.bintray.com/openhab/apt-repo 1.7.0.RC1 main” | sudo tee -a /etc/apt/sources.listSnapshot builds
Not yet available.
Java 8 Installation for Ubuntu or Debiansu –
echo “deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main” | tee /etc/apt/sources.list.d/webupd8team-java.list
echo “deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main” | tee -a /etc/apt/sources.list.d/webupd8team-java.list
apt-key adv –keyserver hkp://keyserver.ubuntu.com:80 –recv-keys EEA14886
apt-get update
apt-get purge openjdk* # (to remove previously installed lower versions)
apt-get install oracle-java8-installer
exitManual installation (alternative approach)
WARNING: this quick setup is an example for a KNX environment. You need different addons and configurations for other bindings.
Installing the openHAB runtimeThe openHAB runtime comes as a platform-independent zip file. To install it, follow these simple steps:
You will need to install Java if not already installed. Go to http://java.com/ to get it. For ARM based systems and Synology Diskstation, see Hardware FAQ for instructions on getting Java.
Unzip the openhab-runtime-.zip to where it is intended to be running from, e.g. /opt/openhab.
Copy the bindings you have downloaded -knx-binding-.jar and http-binding- .jar- to the “addons” directory.
Create a personal configuration file configurations/openhab.cfg and add the appropriate configuration parameters from configurations/openhab_default.cfg (depending on the bindings you’ve copied).OPTIONAL: Installing the openHAB designer
The openHAB designer comes as a platform-dependent zip, so choose the right type for your platform. To install it, follow these simple steps:
Unzip the openhab-designer-
– .zip to some directory, e.g. /opt/openhab-designer
Launch it by the executable openHAB-Designer
Select the “configurations” folder of your runtime installation in the folder dialog that is shown when selecting the “open folder” toolbar icon.Configuring the server
For please visit the configuration page(s).
Start the server!Launch the runtime by executing the script start.sh
Go test it!
openHAB comes with a built-in user interface. It works on all webkit-based browsers like Chrome, Safari, etc. Point your browser to http://localhost:8080/openhab.app?sitemap=yourname and you should be looking at your sitemap.
Yocto LayerFor people who make their own linux distribution using Yocto, there is a openHAB layer available:
https://github.com/ulfwin/meta-openhab
You can also find it through the very convenient layer search site:
http://layers.openembedded.org/layerindex/branch/master/layers/
The layer contains one recipe that install both the runtime engine and addons. Check the README for specific instructions for the layer. How to add and use a layer is not covered here (you need to know that in order use Yocto in the first place), but some explanation can be found here:
http://www.yoctoproject.org/docs/1.6/dev-manual/dev-manual.html#understanding-and-creating-layers
Via ChefThere is a chef cookbook available at github.com/JustinAiken/openhab-cookbook. It can install from the Debian packages or via source.
-
nas4free jail install
fetch https://raw.githubusercontent.com/fsbruva/thebrig/alcatraz/thebrig_install.sh
sh thebrig_install.sh /PATH/TO/BRIG/FOLDER -
video ile ses birleştirme
ffmpeg -i video.mp4 -i audio.m4a -c:v copy -c:a copy output.mp4
-
banana pi java install
wget –no-check-certificate –no-cookies – –header “Cookie: oraclelicense=accept-securebackup-cookie” http://download.oracle.com/otn-pub/java/jdk/8-b132/jdk-8-linux-arm-vfp-hflt.tar.gz
Log-in Raspberry Pi, enter the command to extract jdk-8-linux-arm-vfp-hflt.tar.gz to /opt directory.
$ sudo tar zxvf jdk-8-linux-arm-vfp-hflt.tar.gz -C /optSet default java and javac to the new installed jdk8.
$ sudo update-alternatives –install /usr/bin/javac javac /opt/jdk1.8.0/bin/javac 1
$ sudo update-alternatives –install /usr/bin/java java /opt/jdk1.8.0/bin/java 1$ sudo update-alternatives –config javac
$ sudo update-alternatives –config javaAfter all, verify with the commands with -verion option.
$ java -version
$ javac -version -
arte hd hdmi-cec vu plus volume problem
a/v settings
ac3 downmix no to yes