As you said you are trying to import a MongoDB database, And you are using the MongoDB command such as mongorestore. And also as you said you have taken mongodump backup of MongoDB database , which MongoDB version is 2.4 & you are going to import that mongodump backup in MongoDB , which version is 3.6.
As I would like to say here as per MongoDB BOL documentation here Starting in 3.2, MongoDB uses the WiredTiger as the default storage engine. Previous versions used the MMAPv1 as the default storage engine. As the Compatibility Changes in MongoDB 3.2 here and here.
I am not sure what commands you have used to import the mongodump data.
As mongoimport and mongorestore both commands have a different behaviour in MongoDB.
The mongoimport tool imports content from an Extended JSON, CSV, or TSV export created by mongoexport, or potentially, another third-party export tool.
Note : mongoimport only supports data files that are UTF-8 encoded. Using other encodings will produce errors.
For example mongoimport the syntax should be like as mention below
>mongoimport -d test -c zips C:\MongoDBDBA\zips.json
As here test is database name & zips is collection name and zips.json is (.json) file which is going to import in MongoDB database. For more details about mongoimport, you can find the Blog of Ken W. Alger here.
As the mongorestore program loads data from either a binary database dump created by mongodump or the standard input (starting in version 3.0.0) into a mongod or mongos instance.
If you are doing mongorestore stop here and must look upon the Version Compatibility.
Version Compatibility
The data format used by mongodump from version 2.2 or later is incompatible with earlier versions of mongod. Do not use recent versions of mongodump to back up older data stores.
Exclude system.profile Collection
mongorestore does not restore the system.profile collection data.
Required Access
To restore data to a MongoDB deployment that has access control enabled, the restore role provides access to restore any database if the backup data does not include system.profile collection data.
the mongorestore syntax should be as mention below
>mongorestore --collection people --db accounts dump/accounts/people.bson
Here accounts is a database name and people is collection name. And people.bson is mongodump (.bson) file, which is going to restore in MongoDB database.
For further your ref here and here