diff --git a/src/freedombone-utils-setup b/src/freedombone-utils-setup
index 0542323c47bc3b88d7fac301f07c16eeb0bc804c..99fc57a71b00a5236c784b0d88908a825079cad3 100755
--- a/src/freedombone-utils-setup
+++ b/src/freedombone-utils-setup
@@ -428,6 +428,10 @@ function disable_ctrl_alt_del {
     ln -sf /dev/null /etc/systemd/system/ctrl-alt-del.target
 }
 
+function disable_dccp {
+    echo "install dccp /bin/true" > /etc/modprobe.d/dccp.conf
+}
+
 function lockdown_permissions {
     # All commands owned by root
     if [ -d /bin ]; then
@@ -545,6 +549,9 @@ function setup_utils {
     read_config_param "PROJECT_REPO"
     write_config_param "PROJECT_REPO" "$PROJECT_REPO"
 
+    function_check disable_dccp
+    disable_dccp
+
     function_check disable_ctrl_alt_del
     disable_ctrl_alt_del