The socket.setTTL() method is an inbuilt application programming interface of class Socket within dgram module which is used to set or clear the IP_TTL socket option which helps to specify how many IP hops that a packet is allowed to travel through the specified router or gateway.
Syntax:
const socket.setTTL( ttl )
Parameters: This method takes an integer value representing the number of IP hops that a packet is allowed to travel through the specified router or gateway.
Return Value: This method does not return any value.
Example 1: Filename: index.js
Javascript
const dgram = require( 'dgram' );
const client = dgram.createSocket( "udp4" );
const server = dgram.createSocket( "udp4" );
let broadcast_address = 12345;
server.on( "message" , function (msg) {
process.stdout.write( "UDP String: " + msg + "\n" );
process.exit();
})
.bind(broadcast_address, () => {
server.setTTL(144);
});
client.send( "Hello" , 0, 7, broadcast_address, "localhost" );
|
Output:
UDP String: Hello
Example 2: Filename: index.js
Javascript
const dgram = require( 'dgram' );
const client = dgram.createSocket( "udp4" );
const server = dgram.createSocket( "udp4" );
server.on( "message" , function (msg) {
process.stdout.write( "UDP String: " + msg + "\n" );
process.exit();
});
server.on( 'listening' , () => {
const address = server.address();
console.log(`server listening
${address.address}:${address.port}`);
});
server.bind(1234, () => {
server.setTTL(144);
});
client.send( "Hello" , 0, 7, 1234, "localhost" );
|
Output:
server listening 0.0.0.0:1234
UDP String: Hello
Run the index.js file using the following command:
node index.js
Reference: https://nodejs.org/dist/latest-v12.x/docs/api/dgram.html#dgram_socket_setttl_ttl