pchero on May 8th, 2014

Freeswitch 에서 제공하는 Dialplan 기능 중에서는 다른 언어를 사용할 수 있도록 해주는 기능들이 있다. 지원 가능한 언어 목록은 다음과 같다. Languages Languages for Call Control explained. mod_java – Java support. mod_lua – Lua support. mod_managed – Support for .NET (Microsoft CLR or Mono) and .NET languages (C#, VB, F#, …) mod_perl – Perl support. mod_python […]

Continue reading about [Freeswitch] Support language

pchero on May 8th, 2014

pchero@MyDebian:~$ 허미… -bash: $’355227210353257270…’: command not found pchero@MyDebian:~$ 무지하게 졸립구만. -bash: $’353254264354247200355225230352262214′: command not found pchero@MyDebian:~$ 우짜면 좋을까남.. -bash: $’354232260354247234353251264′: command not found pchero@MyDebian:~$ ….. -bash: …..: command not found 아 졸려… -_-;;;  

Continue reading about 오늘 일하면서 입력한 명령어…

pchero on May 6th, 2014

사용가능한 Python 모듈들을 알아보기 위해 python 인터프리터에서 전체 모듈보기 명령어를 입력했는데, 다음과 같은 오류 메시지를 확인했다. pchero@MyDebian:/usr/lib/pymodules/python2.7$ python Python 2.7.3 (default, Mar 13 2014, 11:03:55) [GCC 4.7.2] on linux2 Type “help”, “copyright”, “credits” or “license” for more information. >>> help(‘modules’) Please wait a moment while I gather a list of all available modules… /usr/lib/python2.7/dist-packages/gobject/constants.py:24: Warning: […]

Continue reading about Could not get python modules list…

pchero on May 6th, 2014

Freeswitch-python module install & configuration Debian Linux/Freeswitch source 설치 기준으로 설명한다. Freeswitch Python 모듈인 mod_pythom 을 설치해야 한다. Source Directory 로 이동하자. $ cd /usr/local/src/freeswitch.git Freeswitch 는 설치시 모든 모듈을 컴파일하지 않는다. 아무런 추가 설정이 없다면 기본 모듈만을 설치한다. 따라서, 다른 추가 모듈들이 필요하다면 별도의 설정 후, 다시 컴파일을 진행해 주어야 한다. 정확히는 컴파일 시, […]

Continue reading about [Freeswitch] Enable python script.

pchero on May 5th, 2014

시스템 부팅시 자동으로 NIC 에 IP 를 할당하고 싶다면 /etc/rc.conf 파일을 이용한다. rc.conf 설정 예제. root@FBSD10:/etc # vi rc.conf hostname=”FBSD10″ #ifconfig_em0=”DHCP” ifconfig_em0=”10.0.2.16/24″ ifconfig_em0_ipv6=”inet6 accept_rtadv” sshd_enable=”YES” ntpd_enable=”YES” # Set dumpdev to “AUTO” to enable crash dumps, “NO” to disable dumpdev=”AUTO” # Set for em1 ifconfig_em1=”192.168.200.12/24″ # Set for em2 ifconfig_em2=”192.168.201.12/24″ # Default route gateway defaultrouter=”10.0.2.2″   […]

Continue reading about [FreeBSD] Network configure