<p></p>
<p>I've noticed that freeradius-client was missing so I created a new Dockerfile to handle this like so:</p>
<pre><code>FROM kamailio/kamailio:5.3.1-jessie

RUN apt-get update 
RUN apt-get install -y --no-install-recommends ca-certificates build-essential git python python-pip python-setuptools file pkg-config

RUN cd /usr/local/src \
    && git clone https://github.com/FreeRADIUS/freeradius-client.git \
    && cd freeradius-client/ \
    && ./configure \
    && make \
    && make install

RUN ldconfig

EXPOSE 5060

ENTRYPOINT ["kamailio", "-DD", "-E"]
</code></pre>
<p>Running ldd on the auth_radius.so module afterwards, states:</p>
<pre><code>root@bea2be591c38:/usr/lib/x86_64-linux-gnu/kamailio/modules# ldd auth_radius.so
        linux-vdso.so.1 (0x00007ffc503e5000)
        libfreeradius-client.so.2 => /usr/local/lib/libfreeradius-client.so.2 (0x00007faf7559e000)
        libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007faf751f3000)
        libcrypt.so.1 => /lib/x86_64-linux-gnu/libcrypt.so.1 (0x00007faf74fbc000)
        libnsl.so.1 => /lib/x86_64-linux-gnu/libnsl.so.1 (0x00007faf74da4000)
        /lib64/ld-linux-x86-64.so.2 (0x00007faf759c4000)
</code></pre>
<p>I am currently trying to build the auth_radius.so manually and see if something changes. I am currently getting a implicit declaration warning about <code>VENDOR()</code> which I am guess comes from <code>radcli</code>, although I explicitly run <code>FREERADIUS=1 make</code></p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/kamailio/kamailio/issues/2496#issuecomment-703541030">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/ABO7UZO2ACZ5X6QD2EYGDTTSJGMZLANCNFSM4SEIW4RQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/ABO7UZK5XOOJTAPT2U5SDH3SJGMZLA5CNFSM4SEIW4R2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOFHXS6JQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/kamailio/kamailio/issues/2496#issuecomment-703541030",
"url": "https://github.com/kamailio/kamailio/issues/2496#issuecomment-703541030",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>