From 744ccd4ed206762aaea142f7a10333a5954c4d21 Mon Sep 17 00:00:00 2001 From: Archana Shinde Date: Fri, 2 Aug 2019 14:57:16 -0700 Subject: [PATCH] network: Set the default config to tcfilter If the configuration for networking is missing, tcfilter will be chosen. Signed-off-by: Archana Shinde --- pkg/katautils/config-settings.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/katautils/config-settings.go b/pkg/katautils/config-settings.go index 02217f9d9..568eff7a7 100644 --- a/pkg/katautils/config-settings.go +++ b/pkg/katautils/config-settings.go @@ -28,7 +28,7 @@ const defaultMemSize uint32 = 2048 // MiB const defaultMemSlots uint32 = 10 const defaultMemOffset uint32 = 0 // MiB const defaultBridgesCount uint32 = 1 -const defaultInterNetworkingModel = "macvtap" +const defaultInterNetworkingModel = "tcfilter" const defaultDisableBlockDeviceUse bool = false const defaultBlockDeviceDriver = "virtio-scsi" const defaultBlockDeviceCacheSet bool = false