IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Controls the persistent default gateway for the link to the camera. It is only used when the camera boots with persistent IP enabled by GevCurrentIPConfigurationPersistentIP.
Name |
GevPersistentDefaultGateway |
Category |
|
Interface |
Integer |
Access |
Read/Write |
Unit |
- |
Visibility |
Beginner |
Values |
≥ 0 |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
|
The access changes to read-only during an acquisition. |
Code example
C++
// Determine the current GevPersistentDefaultGateway
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("GevPersistentDefaultGateway")->Value();
// Set GevPersistentDefaultGateway to 0
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("GevPersistentDefaultGateway")->SetValue(0);
C#
// Determine the current GevPersistentDefaultGateway
long value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("GevPersistentDefaultGateway").Value();
// Set GevPersistentDefaultGateway to 0
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("GevPersistentDefaultGateway").SetValue(0);
Python
# Determine the current GevPersistentDefaultGateway (int)
value = nodeMapRemoteDevice.FindNode("GevPersistentDefaultGateway").Value()
# Set GevPersistentDefaultGateway to 0 (int)
nodeMapRemoteDevice.FindNode("GevPersistentDefaultGateway").SetValue(0)