Meaning of pkt_in and pkt_out in tacker template

Asked by Aqsa Malik

What is the meaning of "pkt_in" and "pkt_out" in tacker tosca templates. And how they are used?

Question information

Language:
English Edit question
Status:
Solved
For:
tacker Edit question
Assignee:
No assignee Edit question
Solved by:
Bob Haddleton
Solved:
Last query:
Last reply:
Revision history for this message
Best Bob Haddleton (bob-haddleton) said :
#1

pkt_in and pkt_out are just names for the interfaces - they have no meaning beyond that. You can use any name you like for the interface:

network_interfaces:
      foomgmt:
        network: net_mgmt
        management: True
      foo:
        network: net0
      bar:
        network: net1

Revision history for this message
Aqsa Malik (aqsamm) said :
#2

Thanks Bob Haddleton, that solved my question.