Beantwortung meiner eigenen Frage:
Ich habe die Datei /etc/asterisk/sip.conf verschoben, indem ich einen symbolischen Link erstellt habe. https://stackoverflow.com/a/1951752/637142
# 1. Delete /etc/asterisk/sip.conf we do not want that file on disk. It contains passwords! rm /etc/asterisk/sip.conf # 2. create sip.conf on memory (/dev/shm/sip.conf) touch /dev/shm/sip.conf ... add configuration and passwords... to that file # 3. Trick asterisk by placing a symbolic link. # Point file /etc/asterisk/sip.conf ---> /dev/shm/sip.conf ln -s /dev/shm/sip.conf /etc/asterisk/sip.conf
Nein, wenn ich auf /etc/asterisk/sip.conf zugreife, greife ich auf /dev/shm/sip.conf zu!