Giter VIP home page Giter VIP logo

Comments (3)

avimas avatar avimas commented on July 19, 2024 1

So I added the elements to the ipfix.elements file and I started to get the this error
"[vflow] 2018/09/20 15:01:03 IPFIX element key (210) not exist", which is strange as 210 is a known element also defined in the ipfix.elements file.
After some debugging I noticed element 210 is always sent after an element which its PEN is set,
and the function func (tr *TemplateRecord) unmarshal(r *reader.Reader)
uses the same TemplateFieldSpecifier for unmarshaling all fields specifieres, once the PEN is in the field specifier is set it never gets clean and all known IPFIX elements after this element have their PEN set to the previous enterprise number (Vmware in this case).

I modified the function func (f *TemplateFieldSpecifier) unmarshal(r *reader.Reader) error in ipfix/decoder.go

to

func (f *TemplateFieldSpecifier) unmarshal(r *reader.Reader) error {
var err error

if f.ElementID, err = r.Uint16(); err != nil {
	return err
}

if f.Length, err = r.Uint16(); err != nil {
	return err
}

if f.ElementID > 0x8000 {
	f.ElementID = f.ElementID & 0x7fff
	if f.EnterpriseNo, err = r.Uint32(); err != nil {
		return err
	}
}else {
	f.EnterpriseNo = 0;
}

return nil

}

and the issue has been resolved.

from vflow.

avimas avatar avimas commented on July 19, 2024

Probably adding the elements specified in

https://docs.vmware.com/en/VMware-NSX-for-vSphere/6.4/com.vmware.nsx.admin.doc/GUID-40805D0E-8A97-4011-B85C-CBF37812DBB5.html
To the new ipfix.elements file
Will fix the issue I’ll give it a try.

from vflow.

mehrdadrad avatar mehrdadrad commented on July 19, 2024

Yes pls add it to ipfix.elements and restart the vflow

from vflow.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.