Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Platform/Shared/VMConfigNetworkView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ struct VMConfigNetworkView: View {
Text("Note: No DHCP will be provided by UTM")
}
}
// Port forwards are only supported in Emulated mode
if config.mode == .bridged || config.mode == .shared {
Text("Note: Port forwards are only honored in Emulated mode (vmnet framework limitation)")
.font(.footnote)
.foregroundColor(.orange)
}
#endif
VMConfigConstantPicker("Emulated Network Card", selection: $config.hardware, type: system.architecture.networkDeviceType)
}.onAppear(perform: loadData)
Expand Down