[Howto] bond network interfaces in FreeBSD 10 (LAGG)

posted in: computer | 0

insert into /etc/rc.conf the following code: (e.g. 4x Intel NICs bond together in LACP-Mode) # tested under FreeBSD v10.x and v11.x ifconfig_igb0=”up” ifconfig_igb1=”up” ifconfig_igb2=”up” ifconfig_igb3=”up” cloned_interfaces=”lagg0″ ifconfig_lagg0=”laggproto lacp laggport igb0 laggport igb1 laggport igb2 laggport igb3 192.168.0.1 netmask 255.255.255.0″

[Howto] use GPIO from Raspberry Pi

posted in: computer | 0

the Linux-Kernel manages the GPIO-system under the path /sys/class/gpio. Use the following commands to manage the pins (e.g. GPIO 17):   activate GPIO 17: echo 17 > /sys/class/gpio/export deactivate GPIO 17: echo 17 > /sys/class/gpio/unexport   configure GPIO 17 as … Continued

[Howto] configure your Grandstream phone for Sipgate VoIP

posted in: computer | 0

the minimal working configuration for an sipgate.de SIP-Account is: SIP Server = sipgate.de SIP User ID = <enter-your-user-id-here> SIP Authenticate ID = <enter-your-user-id-here> SIP Password = <enter-your-password-here> Now the phone can register itself through the SIP-protocol at your provider, e.g. … Continued

[Howto] use videojs with HLS (videojs-contrib-hls.js)

posted in: computer | 0

checkout the live-example from http://jsbin.com/liwecukasi/edit?html,output The live-example code is: <!DOCTYPE html> <html> <head> <meta charset=utf-8 /> <title>videojs-contrib-hls embed</title> <link href=”https://cdnjs.cloudflare.com/ajax/libs/video.js/5.10.2/alt/video-js-cdn.css” rel=”stylesheet”> <script src=”https://cdnjs.cloudflare.com/ajax/libs/video.js/5.10.2/video.js”></script> <script src=”https://cdnjs.cloudflare.com/ajax/libs/videojs-contrib-hls/3.0.2/videojs-contrib-hls.js”></script> </head> <body> <h1>Video.js Example Embed</h1> <video id=”my_video_1″ class=”video-js vjs-default-skin” controls preload=”auto” width=”640″ height=”268″ data-setup='{}’> <source … Continued

[Howto] debug Horde Groupware

posted in: computer | 0

If you receive this webserver-error while querying the horde website [core:notice] [pid 18909:tid 34391285760] AH00052: child pid 18911 exit signal Bus error (10) it is an error in the processing of the horde *.php files, which often cause the killing … Continued