Symbolic links are differentiated as,
1) hard link (forcible links)
2) soft link
When ever, a new file or directory is creating in forcible manner then it will get same file permission, ownership from source file / directory
# ls -l
total 16
-rw-rw-rw- 1 root sys 3 Sep 13 04:09 source
#
# ln -f source link
# ls -l
total 32
-rw-rw-rw- 2 root sys 3 Sep 13 04:09 link
-rw-rw-rw- 2 root sys 3 Sep 13 04:09 source
Symbolic links are following umask setting for directory generally (666). A symbolic file or directory will not contain any file contents. It is link to source. It is using with default directory umask setting.
You can get this from the following,
# umask 22
# mkdir hi
# ls -l
total 32
drwxr-xr-x 2 root sys 96 Sep 13 04:12 hi
-rw-rw-rw- 2 root sys 3 Sep 13 04:09 link
-rw-rw-rw- 2 root sys 3 Sep 13 04:09 source
# ln -s source link2
# ls -l
total 32
drwxr-xr-x 2 root sys 96 Sep 13 04:12 hi
-rw-rw-rw- 2 root sys 3 Sep 13 04:09 link
lrwxr-xr-x 1 root sys 6 Sep 13 04:13 link2 -> source
-rw-rw-rw- 2 root sys 3 Sep 13 04:09 source
#
hi directory and new symbolic file link2 is using same permission setting.
hth.
Easy to suggest when don't know about the problem!